Package org.lwjgl.util.tinyexr
Class EXRImage.Buffer
java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.CustomBuffer<EXRImage.Buffer>
org.lwjgl.system.StructBuffer<EXRImage,EXRImage.Buffer>
org.lwjgl.util.tinyexr.EXRImage.Buffer
- All Implemented Interfaces:
AutoCloseable,Iterable<EXRImage>,org.lwjgl.system.NativeResource,org.lwjgl.system.Pointer
- Enclosing class:
EXRImage
public static class EXRImage.Buffer
extends org.lwjgl.system.StructBuffer<EXRImage,EXRImage.Buffer>
implements org.lwjgl.system.NativeResource
An array of
EXRImage structs.-
Nested Class Summary
Nested classes/interfaces inherited from interface org.lwjgl.system.Pointer
org.lwjgl.system.Pointer.Default -
Field Summary
Fields inherited from interface org.lwjgl.system.Pointer
BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE -
Constructor Summary
ConstructorsConstructorDescriptionBuffer(long address, int cap) Buffer(ByteBuffer container) Creates a newEXRImage.Bufferinstance backed by the specified container. -
Method Summary
Modifier and TypeMethodDescriptionintheight()height(int value) Sets the specified value to theheightfield.@Nullable org.lwjgl.PointerBufferimages()images(@Nullable org.lwjgl.PointerBuffer value) Sets the address of the specifiedPointerBufferto theEXRImage.images()field.intlevel_x()level_x(int value) Sets the specified value to theEXRImage.level_x()field.intlevel_y()level_y(int value) Sets the specified value to theEXRImage.level_y()field.@Nullable EXRImagenext_level(@Nullable EXRImage value) Sets the address of the specifiedEXRImageto theEXRImage.next_level()field.intnum_channels(int value) Sets the specified value to thenum_channelsfield.int@Nullable EXRTile.Buffertiles()tiles(@Nullable EXRTile.Buffer value) Sets the address of the specifiedEXRTile.Bufferto theEXRImage.tiles()field.intwidth()width(int value) Sets the specified value to thewidthfield.Methods inherited from class org.lwjgl.system.StructBuffer
apply, apply, forEach, get, get, get, get, iterator, parallelStream, put, put, sizeof, spliterator, streamMethods inherited from class org.lwjgl.system.CustomBuffer
address, address, address0, capacity, clear, compact, duplicate, flip, free, hasRemaining, limit, limit, mark, position, position, put, remaining, reset, rewind, slice, slice, toStringMethods inherited from class org.lwjgl.system.Pointer.Default
equals, hashCodeMethods inherited from interface org.lwjgl.system.NativeResource
close, free
-
Constructor Details
-
Buffer
Creates a newEXRImage.Bufferinstance backed by the specified container.Changes to the container's content will be visible to the struct buffer instance and vice versa. The two buffers' position, limit, and mark values will be independent. The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided by
EXRImage.SIZEOF, and its mark will be undefined.The created buffer instance holds a strong reference to the container object.
-
Buffer
public Buffer(long address, int cap)
-
-
Method Details
-
tiles
- Returns:
- a
EXRTile.Bufferview of the struct array pointed to by theEXRImage.tiles()field.
-
next_level
- Returns:
- a
EXRImageview of the struct pointed to by theEXRImage.next_level()field.
-
level_x
public int level_x()- Returns:
- the value of the
EXRImage.level_x()field.
-
level_y
public int level_y()- Returns:
- the value of the
EXRImage.level_y()field.
-
images
public @Nullable org.lwjgl.PointerBuffer images()- Returns:
- a
PointerBufferview of the data pointed to by theEXRImage.images()field.
-
width
public int width()- Returns:
- the value of the
widthfield.
-
height
public int height()- Returns:
- the value of the
heightfield.
-
num_channels
public int num_channels()- Returns:
- the value of the
num_channelsfield.
-
num_tiles
public int num_tiles()- Returns:
- the value of the
num_tilesfield.
-
tiles
Sets the address of the specifiedEXRTile.Bufferto theEXRImage.tiles()field. -
next_level
Sets the address of the specifiedEXRImageto theEXRImage.next_level()field. -
level_x
Sets the specified value to theEXRImage.level_x()field. -
level_y
Sets the specified value to theEXRImage.level_y()field. -
images
Sets the address of the specifiedPointerBufferto theEXRImage.images()field. -
width
Sets the specified value to thewidthfield. -
height
Sets the specified value to theheightfield. -
num_channels
Sets the specified value to thenum_channelsfield.
-