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.StructValidation
Nested classes/interfaces inherited from interface org.lwjgl.system.Pointer
Pointer.Default
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
The struct alignment in bytes.static final int
The struct member offsets.static final int
The struct member offsets.static final int
The struct member offsets.static final int
The struct size in bytes.static final int
The struct member offsets.static final int
The struct member offsets.static final int
The 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_Scaler
instance at the current position of the specifiedByteBuffer
container. -
Method Summary
Modifier and TypeMethodDescriptionstatic FTC_Scaler
create
(long address) Returns a newFTC_Scaler
instance for the specified memory address.static FTC_Scaler.Buffer
create
(long address, int capacity) Create aFTC_Scaler.Buffer
instance at the specified memory.static @Nullable FTC_Scaler
createSafe
(long address) static @Nullable FTC_Scaler.Buffer
createSafe
(long address, int capacity) long
face_id()
int
height()
static long
nface_id
(long struct) Unsafe version offace_id()
.static int
nheight
(long struct) Unsafe version ofheight()
.static int
npixel
(long struct) Unsafe version ofpixel()
.static int
nwidth
(long struct) Unsafe version ofwidth()
.static int
nx_res
(long struct) Unsafe version ofx_res()
.static int
ny_res
(long struct) Unsafe version ofy_res()
.int
pixel()
int
sizeof()
Returnssizeof(struct)
.int
width()
int
x_res()
int
y_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_Scaler
instance at the current position of the specifiedByteBuffer
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
-
sizeof
public int sizeof()Description copied from class:Struct
Returnssizeof(struct)
.- Specified by:
sizeof
in classStruct<FTC_Scaler>
-
face_id
public long face_id()- Returns:
- the value of the
face_id
field.
-
width
public int width()- Returns:
- the value of the
width
field.
-
height
public int height()- Returns:
- the value of the
height
field.
-
pixel
public int pixel()- Returns:
- the value of the
pixel
field.
-
x_res
public int x_res()- Returns:
- the value of the
x_res
field.
-
y_res
public int y_res()- Returns:
- the value of the
y_res
field.
-
create
Returns a newFTC_Scaler
instance for the specified memory address. -
createSafe
-
create
Create aFTC_Scaler.Buffer
instance 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()
.
-