Package org.lwjgl.glfw
Class GLFWVidMode
- java.lang.Object
-
- org.lwjgl.system.Pointer.Default
-
- org.lwjgl.system.Struct
-
- org.lwjgl.glfw.GLFWVidMode
-
- All Implemented Interfaces:
- org.lwjgl.system.Pointer
public class GLFWVidMode extends org.lwjgl.system.StructDescribes a single video mode.Member documentation
width– the width, in screen coordinates, of the video modeheight– the height, in screen coordinates, of the video moderedBits– the bit depth of the red channel of the video modegreenBits– the bit depth of the green channel of the video modeblueBits– the bit depth of the blue channel of the video moderefreshRate– the refresh rate, in Hz, of the video mode
Layout
struct GLFWvidmode { int width; int height; int redBits; int greenBits; int blueBits; int refreshRate; }
-
-
Nested Class Summary
Nested Classes Modifier and Type Class and Description static classGLFWVidMode.BufferAn array ofGLFWVidModestructs.
-
Field Summary
Fields Modifier and Type Field and Description static intSIZEOFThe struct size in bytes.
-
Constructor Summary
Constructors Constructor and Description GLFWVidMode(java.nio.ByteBuffer container)Creates aGLFWVidModeinstance at the current position of the specifiedByteBuffercontainer.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method and Description intblueBits()Returns the value of theblueBitsfield.static 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 GLFWVidModecreateSafe(long address)static GLFWVidMode.BuffercreateSafe(long address, int capacity)intgreenBits()Returns the value of thegreenBitsfield.intheight()Returns the value of theheightfield.intredBits()Returns the value of theredBitsfield.intrefreshRate()Returns the value of therefreshRatefield.intsizeof()intwidth()Returns the value of thewidthfield.
-
-
-
Constructor Detail
-
GLFWVidMode
public GLFWVidMode(java.nio.ByteBuffer container)
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 Detail
-
sizeof
public int sizeof()
- Specified by:
sizeofin classorg.lwjgl.system.Struct
-
width
public int width()
Returns the value of thewidthfield.
-
height
public int height()
Returns the value of theheightfield.
-
redBits
public int redBits()
Returns the value of theredBitsfield.
-
greenBits
public int greenBits()
Returns the value of thegreenBitsfield.
-
blueBits
public int blueBits()
Returns the value of theblueBitsfield.
-
refreshRate
public int refreshRate()
Returns the value of therefreshRatefield.
-
create
public static GLFWVidMode create(long address)
Returns a newGLFWVidModeinstance for the specified memory address.
-
createSafe
@Nullable public static GLFWVidMode createSafe(long address)
-
create
public static GLFWVidMode.Buffer create(long address, int capacity)
Create aGLFWVidMode.Bufferinstance at the specified memory.- Parameters:
address- the memory addresscapacity- the buffer capacity
-
createSafe
@Nullable public static GLFWVidMode.Buffer createSafe(long address, int capacity)
-
-