Package org.lwjgl.util.freetype
Class FTC_ImageType
- All Implemented Interfaces:
Pointer
struct FTC_ImageTypeRec {
FTC_FaceID face_id;
FT_UInt width;
FT_UInt height;
FT_Int32 flags;
}-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class org.lwjgl.system.Struct
Struct.StructValidationNested classes/interfaces inherited from interface org.lwjgl.system.Pointer
Pointer.Default -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intThe struct alignment in bytes.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct size in bytes.static final intThe struct member offsets.Fields inherited from interface org.lwjgl.system.Pointer
BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE -
Constructor Summary
ConstructorsConstructorDescriptionFTC_ImageType(ByteBuffer container) Creates aFTC_ImageTypeinstance at the current position of the specifiedByteBuffercontainer. -
Method Summary
Modifier and TypeMethodDescriptionstatic FTC_ImageTypecreate(long address) Returns a newFTC_ImageTypeinstance for the specified memory address.static FTC_ImageType.Buffercreate(long address, int capacity) Create aFTC_ImageType.Bufferinstance at the specified memory.static @Nullable FTC_ImageTypecreateSafe(long address) static @Nullable FTC_ImageType.BuffercreateSafe(long address, int capacity) longface_id()intflags()intheight()static longnface_id(long struct) Unsafe version offace_id().static intnflags(long struct) Unsafe version offlags().static intnheight(long struct) Unsafe version ofheight().static intnwidth(long struct) Unsafe version ofwidth().intsizeof()Returnssizeof(struct).intwidth()Methods inherited from class org.lwjgl.system.Pointer.Default
address, equals, hashCode, toString
-
Field Details
-
SIZEOF
public static final int SIZEOFThe struct size in bytes. -
ALIGNOF
public static final int ALIGNOFThe struct alignment in bytes. -
FACE_ID
public static final int FACE_IDThe struct member offsets. -
WIDTH
public static final int WIDTHThe struct member offsets. -
HEIGHT
public static final int HEIGHTThe struct member offsets. -
FLAGS
public static final int FLAGSThe struct member offsets.
-
-
Constructor Details
-
FTC_ImageType
Creates aFTC_ImageTypeinstance at the current position of the specifiedByteBuffercontainer. 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
-
sizeof
public int sizeof()Description copied from class:StructReturnssizeof(struct).- Specified by:
sizeofin classStruct<FTC_ImageType>
-
face_id
public long face_id()- Returns:
- the value of the
face_idfield.
-
width
public int width()- Returns:
- the value of the
widthfield.
-
height
public int height()- Returns:
- the value of the
heightfield.
-
flags
public int flags()- Returns:
- the value of the
flagsfield.
-
create
Returns a newFTC_ImageTypeinstance for the specified memory address. -
createSafe
-
create
Create aFTC_ImageType.Bufferinstance at the specified memory.- Parameters:
address- the memory addresscapacity- the buffer capacity
-
createSafe
-
nface_id
public static long nface_id(long struct) Unsafe version offace_id(). -
nwidth
public static int nwidth(long struct) Unsafe version ofwidth(). -
nheight
public static int nheight(long struct) Unsafe version ofheight(). -
nflags
public static int nflags(long struct) Unsafe version offlags().
-