Class FT_Outline_Funcs

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class FT_Outline_Funcs extends Struct<FT_Outline_Funcs> implements NativeResource

 struct FT_Outline_Funcs {
     {@link FT_Outline_MoveToFuncI FT_Outline_MoveToFunc} move_to;
     {@link FT_Outline_LineToFuncI FT_Outline_LineToFunc} line_to;
     {@link FT_Outline_ConicToFuncI FT_Outline_ConicToFunc} conic_to;
     {@link FT_Outline_CubicToFuncI FT_Outline_CubicToFunc} cubic_to;
     int shift;
     FT_Pos delta;
 }
  • Field Details

    • SIZEOF

      public static final int SIZEOF
      The struct size in bytes.
    • ALIGNOF

      public static final int ALIGNOF
      The struct alignment in bytes.
    • MOVE_TO

      public static final int MOVE_TO
      The struct member offsets.
    • LINE_TO

      public static final int LINE_TO
      The struct member offsets.
    • CONIC_TO

      public static final int CONIC_TO
      The struct member offsets.
    • CUBIC_TO

      public static final int CUBIC_TO
      The struct member offsets.
    • SHIFT

      public static final int SHIFT
      The struct member offsets.
    • DELTA

      public static final int DELTA
      The struct member offsets.
  • Constructor Details

    • FT_Outline_Funcs

      public FT_Outline_Funcs(ByteBuffer container)
      Creates a FT_Outline_Funcs instance at the current position of the specified ByteBuffer container. Changes to the buffer's content will be visible to the struct instance and vice versa.

      The created instance holds a strong reference to the container object.

  • Method Details