Package org.lwjgl.util.freetype
Class FTC_Scaler
- All Implemented Interfaces:
Pointer
struct FTC_ScalerRec {
FTC_FaceID face_id;
FT_UInt width;
FT_UInt height;
FT_Int pixel;
FT_UInt x_res;
FT_UInt y_res;
}-
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.static final intThe struct member offsets.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_Scaler(ByteBuffer container) Creates aFTC_Scalerinstance at the current position of the specifiedByteBuffercontainer. -
Method Summary
Modifier and TypeMethodDescriptionstatic FTC_Scalercreate(long address) Returns a newFTC_Scalerinstance for the specified memory address.static FTC_Scaler.Buffercreate(long address, int capacity) Create aFTC_Scaler.Bufferinstance at the specified memory.static @Nullable FTC_ScalercreateSafe(long address) static @Nullable FTC_Scaler.BuffercreateSafe(long address, int capacity) longface_id()intheight()static longnface_id(long struct) Unsafe version offace_id().static intnheight(long struct) Unsafe version ofheight().static intnpixel(long struct) Unsafe version ofpixel().static intnwidth(long struct) Unsafe version ofwidth().static intnx_res(long struct) Unsafe version ofx_res().static intny_res(long struct) Unsafe version ofy_res().intpixel()intsizeof()Returnssizeof(struct).intwidth()intx_res()inty_res()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. -
PIXEL
public static final int PIXELThe struct member offsets. -
X_RES
public static final int X_RESThe struct member offsets. -
Y_RES
public static final int Y_RESThe struct member offsets.
-
-
Constructor Details
-
FTC_Scaler
Creates aFTC_Scalerinstance 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_Scaler>
-
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.
-
pixel
public int pixel()- Returns:
- the value of the
pixelfield.
-
x_res
public int x_res()- Returns:
- the value of the
x_resfield.
-
y_res
public int y_res()- Returns:
- the value of the
y_resfield.
-
create
Returns a newFTC_Scalerinstance for the specified memory address. -
createSafe
-
create
Create aFTC_Scaler.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(). -
npixel
public static int npixel(long struct) Unsafe version ofpixel(). -
nx_res
public static int nx_res(long struct) Unsafe version ofx_res(). -
ny_res
public static int ny_res(long struct) Unsafe version ofy_res().
-