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.Struct
Describes a single video mode.Layout
struct GLFWvidmode { int
width()
; intheight()
; intredBits()
; intgreenBits()
; intblueBits()
; intrefreshRate()
; }
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
GLFWVidMode.Buffer
An array ofGLFWVidMode
structs.
-
Constructor Summary
Constructors Constructor Description GLFWVidMode(java.nio.ByteBuffer container)
Creates aGLFWVidMode
instance at the current position of the specifiedByteBuffer
container.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
blueBits()
the bit depth of the blue channel of the video modestatic 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 GLFWVidMode
createSafe(long address)
static GLFWVidMode.Buffer
createSafe(long address, int capacity)
int
greenBits()
the bit depth of the green channel of the video modeint
height()
the height, in screen coordinates, of the video modestatic 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()
the bit depth of the red channel of the video modeint
refreshRate()
the refresh rate, in Hz, of the video modeint
sizeof()
int
width()
the width, in screen coordinates, of the video mode
-
-
-
Constructor Detail
-
GLFWVidMode
public GLFWVidMode(java.nio.ByteBuffer container)
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 Detail
-
sizeof
public int sizeof()
- Specified by:
sizeof
in classorg.lwjgl.system.Struct
-
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
public static GLFWVidMode create(long address)
Returns a newGLFWVidMode
instance 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.Buffer
instance at the specified memory.- Parameters:
address
- the memory addresscapacity
- the buffer capacity
-
createSafe
@Nullable public static GLFWVidMode.Buffer createSafe(long address, int capacity)
-
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()
.
-
-