Package org.lwjgl.glfw
Class GLFWVidMode
- All Implemented Interfaces:
Pointer
struct GLFWvidmode {
int width;
int height;
int redBits;
int greenBits;
int blueBits;
int refreshRate;
}
-
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 member offsets.static final int
The struct member offsets.static final int
The struct size in bytes.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
ConstructorsConstructorDescriptionGLFWVidMode
(ByteBuffer container) Creates aGLFWVidMode
instance at the current position of the specifiedByteBuffer
container. -
Method Summary
Modifier and TypeMethodDescriptionint
blueBits()
static GLFWVidMode
create
(long address) Returns a newGLFWVidMode
instance for the specified memory address.static GLFWVidMode.Buffer
create
(long address, int capacity) Create aGLFWVidMode.Buffer
instance at the specified memory.static @Nullable GLFWVidMode
createSafe
(long address) static @Nullable GLFWVidMode.Buffer
createSafe
(long address, int capacity) int
int
height()
static int
nblueBits
(long struct) Unsafe version ofblueBits()
.static int
ngreenBits
(long struct) Unsafe version ofgreenBits()
.static int
nheight
(long struct) Unsafe version ofheight()
.static int
nredBits
(long struct) Unsafe version ofredBits()
.static int
nrefreshRate
(long struct) Unsafe version ofrefreshRate()
.static int
nwidth
(long struct) Unsafe version ofwidth()
.int
redBits()
int
int
sizeof()
Returnssizeof(struct)
.int
width()
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. -
WIDTH
public static final int WIDTHThe struct member offsets. -
HEIGHT
public static final int HEIGHTThe struct member offsets. -
REDBITS
public static final int REDBITSThe struct member offsets. -
GREENBITS
public static final int GREENBITSThe struct member offsets. -
BLUEBITS
public static final int BLUEBITSThe struct member offsets. -
REFRESHRATE
public static final int REFRESHRATEThe struct member offsets.
-
-
Constructor Details
-
GLFWVidMode
Creates aGLFWVidMode
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<GLFWVidMode>
-
width
public int width()- Returns:
- the value of the
width
field.
-
height
public int height()- Returns:
- the value of the
height
field.
-
redBits
public int redBits()- Returns:
- the value of the
redBits
field.
-
greenBits
public int greenBits()- Returns:
- the value of the
greenBits
field.
-
blueBits
public int blueBits()- Returns:
- the value of the
blueBits
field.
-
refreshRate
public int refreshRate()- Returns:
- the value of the
refreshRate
field.
-
create
Returns a newGLFWVidMode
instance for the specified memory address. -
createSafe
-
create
Create aGLFWVidMode.Buffer
instance at the specified memory.- Parameters:
address
- the memory addresscapacity
- the buffer capacity
-
createSafe
-
nwidth
public static int nwidth(long struct) Unsafe version ofwidth()
. -
nheight
public static int nheight(long struct) Unsafe version ofheight()
. -
nredBits
public static int nredBits(long struct) Unsafe version ofredBits()
. -
ngreenBits
public static int ngreenBits(long struct) Unsafe version ofgreenBits()
. -
nblueBits
public static int nblueBits(long struct) Unsafe version ofblueBits()
. -
nrefreshRate
public static int nrefreshRate(long struct) Unsafe version ofrefreshRate()
.
-