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:
- java.lang.AutoCloseable, NativeResource, Pointer
public class GLFWVidMode extends Struct
Describes 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.-
Nested classes/interfaces inherited from interface org.lwjgl.system.Pointer
Pointer.Default
-
-
Field Summary
Fields Modifier and Type Field and Description static intSIZEOFThe struct size in bytes.-
Fields inherited from interface org.lwjgl.system.Pointer
POINTER_SHIFT, POINTER_SIZE
-
-
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 GLFWVidModecalloc()Returns a newGLFWVidModeinstance allocated withmemCalloc.static GLFWVidMode.Buffercalloc(int capacity)Returns a newGLFWVidMode.Bufferinstance allocated withmemCalloc.static GLFWVidModecallocStack()Returns a newGLFWVidModeinstance allocated on the thread-localMemoryStackand initializes all its bits to zero.static GLFWVidMode.BuffercallocStack(int capacity)Returns a newGLFWVidMode.Bufferinstance allocated on the thread-localMemoryStackand initializes all its bits to zero.static GLFWVidMode.BuffercallocStack(int capacity, MemoryStack stack)Returns a newGLFWVidMode.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static GLFWVidModecallocStack(MemoryStack stack)Returns a newGLFWVidModeinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static GLFWVidModecreate()Returns a newGLFWVidModeinstance allocated withBufferUtils.static GLFWVidMode.Buffercreate(int capacity)Returns a newGLFWVidMode.Bufferinstance allocated withBufferUtils.static GLFWVidModecreate(long address)static GLFWVidMode.Buffercreate(long address, int capacity)Create aGLFWVidMode.Bufferinstance at the specified memory.intgreenBits()Returns the value of thegreenBitsfield.intheight()Returns the value of theheightfield.static GLFWVidModemalloc()Returns a newGLFWVidModeinstance allocated withmemAlloc.static GLFWVidMode.Buffermalloc(int capacity)Returns a newGLFWVidMode.Bufferinstance allocated withmemAlloc.static GLFWVidModemallocStack()Returns a newGLFWVidModeinstance allocated on the thread-localMemoryStack.static GLFWVidMode.BuffermallocStack(int capacity)Returns a newGLFWVidMode.Bufferinstance allocated on the thread-localMemoryStack.static GLFWVidMode.BuffermallocStack(int capacity, MemoryStack stack)Returns a newGLFWVidMode.Bufferinstance allocated on the specifiedMemoryStack.static GLFWVidModemallocStack(MemoryStack stack)Returns a newGLFWVidModeinstance allocated on the specifiedMemoryStack.intredBits()Returns the value of theredBitsfield.intrefreshRate()Returns the value of therefreshRatefield.intsizeof()Returns thesizeof(struct).intwidth()Returns the value of thewidthfield.-
Methods inherited from class org.lwjgl.system.Pointer.Default
address, equals, hashCode, toString
-
Methods inherited from interface org.lwjgl.system.NativeResource
close
-
-
-
-
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()
Description copied from class:StructReturns thesizeof(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.
-
malloc
public static GLFWVidMode malloc()
Returns a newGLFWVidModeinstance allocated withmemAlloc. The instance must be explicitly freed.
-
calloc
public static GLFWVidMode calloc()
Returns a newGLFWVidModeinstance allocated withmemCalloc. The instance must be explicitly freed.
-
create
public static GLFWVidMode create()
Returns a newGLFWVidModeinstance allocated withBufferUtils.
-
create
public static GLFWVidMode create(long address)
-
malloc
public static GLFWVidMode.Buffer malloc(int capacity)
Returns a newGLFWVidMode.Bufferinstance allocated withmemAlloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
calloc
public static GLFWVidMode.Buffer calloc(int capacity)
Returns a newGLFWVidMode.Bufferinstance allocated withmemCalloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
create
public static GLFWVidMode.Buffer create(int capacity)
Returns a newGLFWVidMode.Bufferinstance allocated withBufferUtils.- Parameters:
capacity- the buffer capacity
-
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
-
mallocStack
public static GLFWVidMode mallocStack()
Returns a newGLFWVidModeinstance allocated on the thread-localMemoryStack.
-
callocStack
public static GLFWVidMode callocStack()
Returns a newGLFWVidModeinstance allocated on the thread-localMemoryStackand initializes all its bits to zero.
-
mallocStack
public static GLFWVidMode mallocStack(MemoryStack stack)
Returns a newGLFWVidModeinstance allocated on the specifiedMemoryStack.- Parameters:
stack- the stack from which to allocate
-
callocStack
public static GLFWVidMode callocStack(MemoryStack stack)
Returns a newGLFWVidModeinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
stack- the stack from which to allocate
-
mallocStack
public static GLFWVidMode.Buffer mallocStack(int capacity)
Returns a newGLFWVidMode.Bufferinstance allocated on the thread-localMemoryStack.- Parameters:
capacity- the buffer capacity
-
callocStack
public static GLFWVidMode.Buffer callocStack(int capacity)
Returns a newGLFWVidMode.Bufferinstance allocated on the thread-localMemoryStackand initializes all its bits to zero.- Parameters:
capacity- the buffer capacity
-
mallocStack
public static GLFWVidMode.Buffer mallocStack(int capacity, MemoryStack stack)
Returns a newGLFWVidMode.Bufferinstance allocated on the specifiedMemoryStack.- Parameters:
stack- the stack from which to allocatecapacity- the buffer capacity
-
callocStack
public static GLFWVidMode.Buffer callocStack(int capacity, MemoryStack stack)
Returns a newGLFWVidMode.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
stack- the stack from which to allocatecapacity- the buffer capacity
-
-