Package org.lwjgl.glfw
Class GLFWVidMode
java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<GLFWVidMode>
org.lwjgl.glfw.GLFWVidMode
- All Implemented Interfaces:
org.lwjgl.system.Pointer
Describes a single video mode.
Layout
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
org.lwjgl.system.Struct.StructValidationNested classes/interfaces inherited from interface org.lwjgl.system.Pointer
org.lwjgl.system.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 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
ConstructorsConstructorDescriptionGLFWVidMode(ByteBuffer container) Creates aGLFWVidModeinstance at the current position of the specifiedByteBuffercontainer. -
Method Summary
Modifier and TypeMethodDescriptionintblueBits()the bit depth of the blue channel of the video modestatic GLFWVidModecreate(long address) Returns a newGLFWVidModeinstance for the specified memory address.static GLFWVidMode.Buffercreate(long address, int capacity) Create aGLFWVidMode.Bufferinstance at the specified memory.static @Nullable GLFWVidModecreateSafe(long address) static @Nullable GLFWVidMode.BuffercreateSafe(long address, int capacity) intthe bit depth of the green channel of the video modeintheight()the height, in screen coordinates, of the video modestatic intnblueBits(long struct) Unsafe version ofblueBits().static intngreenBits(long struct) Unsafe version ofgreenBits().static intnheight(long struct) Unsafe version ofheight().static intnredBits(long struct) Unsafe version ofredBits().static intnrefreshRate(long struct) Unsafe version ofrefreshRate().static intnwidth(long struct) Unsafe version ofwidth().intredBits()the bit depth of the red channel of the video modeintthe refresh rate, in Hz, of the video modeintsizeof()intwidth()the width, in screen coordinates, of the video modeMethods inherited from class org.lwjgl.system.Struct
clear, free, isNull, validate, validateMethods 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 aGLFWVidModeinstance 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()- Specified by:
sizeofin classorg.lwjgl.system.Struct<GLFWVidMode>
-
width
public int width()the width, in screen coordinates, of the video mode -
height
public int height()the height, in screen coordinates, of the video mode -
redBits
public int redBits()the bit depth of the red channel of the video mode -
greenBits
public int greenBits()the bit depth of the green channel of the video mode -
blueBits
public int blueBits()the bit depth of the blue channel of the video mode -
refreshRate
public int refreshRate()the refresh rate, in Hz, of the video mode -
create
Returns a newGLFWVidModeinstance for the specified memory address. -
createSafe
-
create
Create aGLFWVidMode.Bufferinstance 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().
-