Package org.lwjgl.glfw
Class GLFWImage
- java.lang.Object
-
- org.lwjgl.system.Pointer.Default
-
- org.lwjgl.system.Struct
-
- org.lwjgl.glfw.GLFWImage
-
- All Implemented Interfaces:
- java.lang.AutoCloseable, NativeResource, Pointer
public class GLFWImage extends Struct
Image data.Member documentation
width– the width, in pixels, of this imageheight– the height, in pixels, of this imagepixels– the pixel data of this image, arranged left-to-right, top-to-bottom
Layout
struct GLFWimage { int width; int height; unsigned char * pixels; }
-
-
Nested Class Summary
Nested Classes Modifier and Type Class and Description static classGLFWImage.BufferAn array ofGLFWImagestructs.-
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
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method and Description static GLFWImagecalloc()static GLFWImage.Buffercalloc(int capacity)Returns a newGLFWImage.Bufferinstance allocated withmemCalloc.static GLFWImagecallocStack()Returns a newGLFWImageinstance allocated on the thread-localMemoryStackand initializes all its bits to zero.static GLFWImage.BuffercallocStack(int capacity)Returns a newGLFWImage.Bufferinstance allocated on the thread-localMemoryStackand initializes all its bits to zero.static GLFWImage.BuffercallocStack(int capacity, MemoryStack stack)Returns a newGLFWImage.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static GLFWImagecallocStack(MemoryStack stack)Returns a newGLFWImageinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static GLFWImagecreate()Returns a newGLFWImageinstance allocated withBufferUtils.static GLFWImage.Buffercreate(int capacity)Returns a newGLFWImage.Bufferinstance allocated withBufferUtils.static GLFWImagecreate(long address)static GLFWImage.Buffercreate(long address, int capacity)Create aGLFWImage.Bufferinstance at the specified memory.intheight()Returns the value of theheightfield.GLFWImageheight(int value)Sets the specified value to theheightfield.static GLFWImagemalloc()static GLFWImage.Buffermalloc(int capacity)Returns a newGLFWImage.Bufferinstance allocated withmemAlloc.static GLFWImagemallocStack()Returns a newGLFWImageinstance allocated on the thread-localMemoryStack.static GLFWImage.BuffermallocStack(int capacity)Returns a newGLFWImage.Bufferinstance allocated on the thread-localMemoryStack.static GLFWImage.BuffermallocStack(int capacity, MemoryStack stack)Returns a newGLFWImage.Bufferinstance allocated on the specifiedMemoryStack.static GLFWImagemallocStack(MemoryStack stack)Returns a newGLFWImageinstance allocated on the specifiedMemoryStack.GLFWImagenset(long struct)Unsafe version ofset.GLFWImagepixels(java.nio.ByteBuffer value)Sets the address of the specifiedByteBufferto thepixelsfield.java.nio.ByteBufferpixels(int capacity)Returns aByteBufferview of the data pointed to by thepixelsfield.GLFWImageset(GLFWImage src)Copies the specified struct data to this struct.GLFWImageset(int width, int height, java.nio.ByteBuffer pixels)Initializes this struct with the specified values.intsizeof()Returns thesizeof(struct).static voidvalidate(long struct)Validates pointer members that should not beNULL.static voidvalidate(long array, int count)CallsGLFWImage.validate(long)for each struct contained in the specified struct array.intwidth()Returns the value of thewidthfield.GLFWImagewidth(int value)Sets the specified value to 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
-
GLFWImage
public GLFWImage(java.nio.ByteBuffer container)
Creates aGLFWImageinstance 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.
-
pixels
public java.nio.ByteBuffer pixels(int capacity)
Returns aByteBufferview of the data pointed to by thepixelsfield.- Parameters:
capacity- the number of elements in the returned buffer
-
width
public GLFWImage width(int value)
Sets the specified value to thewidthfield.
-
height
public GLFWImage height(int value)
Sets the specified value to theheightfield.
-
pixels
public GLFWImage pixels(java.nio.ByteBuffer value)
Sets the address of the specifiedByteBufferto thepixelsfield.
-
set
public GLFWImage set(int width, int height, java.nio.ByteBuffer pixels)
Initializes this struct with the specified values.
-
set
public GLFWImage set(GLFWImage src)
Copies the specified struct data to this struct.- Parameters:
src- the source struct- Returns:
- this struct
-
malloc
public static GLFWImage malloc()
-
calloc
public static GLFWImage calloc()
-
create
public static GLFWImage create()
Returns a newGLFWImageinstance allocated withBufferUtils.
-
create
public static GLFWImage create(long address)
-
malloc
public static GLFWImage.Buffer malloc(int capacity)
Returns a newGLFWImage.Bufferinstance allocated withmemAlloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
calloc
public static GLFWImage.Buffer calloc(int capacity)
Returns a newGLFWImage.Bufferinstance allocated withmemCalloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
create
public static GLFWImage.Buffer create(int capacity)
Returns a newGLFWImage.Bufferinstance allocated withBufferUtils.- Parameters:
capacity- the buffer capacity
-
create
public static GLFWImage.Buffer create(long address, int capacity)
Create aGLFWImage.Bufferinstance at the specified memory.- Parameters:
address- the memory addresscapacity- the buffer capacity
-
mallocStack
public static GLFWImage mallocStack()
Returns a newGLFWImageinstance allocated on the thread-localMemoryStack.
-
callocStack
public static GLFWImage callocStack()
Returns a newGLFWImageinstance allocated on the thread-localMemoryStackand initializes all its bits to zero.
-
mallocStack
public static GLFWImage mallocStack(MemoryStack stack)
Returns a newGLFWImageinstance allocated on the specifiedMemoryStack.- Parameters:
stack- the stack from which to allocate
-
callocStack
public static GLFWImage callocStack(MemoryStack stack)
Returns a newGLFWImageinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
stack- the stack from which to allocate
-
mallocStack
public static GLFWImage.Buffer mallocStack(int capacity)
Returns a newGLFWImage.Bufferinstance allocated on the thread-localMemoryStack.- Parameters:
capacity- the buffer capacity
-
callocStack
public static GLFWImage.Buffer callocStack(int capacity)
Returns a newGLFWImage.Bufferinstance allocated on the thread-localMemoryStackand initializes all its bits to zero.- Parameters:
capacity- the buffer capacity
-
mallocStack
public static GLFWImage.Buffer mallocStack(int capacity, MemoryStack stack)
Returns a newGLFWImage.Bufferinstance allocated on the specifiedMemoryStack.- Parameters:
stack- the stack from which to allocatecapacity- the buffer capacity
-
callocStack
public static GLFWImage.Buffer callocStack(int capacity, MemoryStack stack)
Returns a newGLFWImage.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
stack- the stack from which to allocatecapacity- the buffer capacity
-
validate
public static void validate(long struct)
Validates pointer members that should not beNULL.- Parameters:
struct- the struct to validate
-
validate
public static void validate(long array, int count)CallsGLFWImage.validate(long)for each struct contained in the specified struct array.- Parameters:
array- the struct array to validatecount- the number of structs inarray
-
-