Package org.lwjgl.util.tinyexr
Class EXRImage.Buffer
- All Implemented Interfaces:
AutoCloseable
,Iterable<EXRImage>
,NativeResource
,Pointer
- Enclosing class:
EXRImage
public static class EXRImage.Buffer
extends StructBuffer<EXRImage,EXRImage.Buffer>
implements NativeResource
An array of
EXRImage
structs.-
Nested Class Summary
Nested classes/interfaces inherited from interface org.lwjgl.system.Pointer
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.Buffer
instance backed by the specified container. -
Method Summary
Modifier and TypeMethodDescriptionint
height()
height
(int value) Sets the specified value to theheight
field.@Nullable PointerBuffer
images()
images
(@Nullable PointerBuffer value) Sets the address of the specifiedPointerBuffer
to theimages
field.int
level_x()
level_x
(int value) Sets the specified value to thelevel_x
field.int
level_y()
level_y
(int value) Sets the specified value to thelevel_y
field.@Nullable EXRImage
next_level
(@Nullable EXRImage value) Sets the address of the specifiedEXRImage
to thenext_level
field.int
num_channels
(int value) Sets the specified value to thenum_channels
field.int
@Nullable EXRTile.Buffer
tiles()
tiles
(@Nullable EXRTile.Buffer value) Sets the address of the specifiedEXRTile.Buffer
to thetiles
field.int
width()
width
(int value) Sets the specified value to thewidth
field.Methods inherited from class org.lwjgl.system.StructBuffer
apply, apply, forEach, get, get, get, get, iterator, parallelStream, put, put, sizeof, spliterator, stream
Methods 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, toString
Methods inherited from class org.lwjgl.system.Pointer.Default
equals, hashCode
Methods inherited from interface org.lwjgl.system.NativeResource
close, free
-
Constructor Details
-
Buffer
Creates a newEXRImage.Buffer
instance 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.Buffer
view of the struct array pointed to by thetiles
field.
-
next_level
- Returns:
- a
EXRImage
view of the struct pointed to by thenext_level
field.
-
level_x
public int level_x()- Returns:
- the value of the
level_x
field.
-
level_y
public int level_y()- Returns:
- the value of the
level_y
field.
-
images
- Returns:
- a
PointerBuffer
view of the data pointed to by theimages
field.
-
width
public int width()- Returns:
- the value of the
width
field.
-
height
public int height()- Returns:
- the value of the
height
field.
-
num_channels
public int num_channels()- Returns:
- the value of the
num_channels
field.
-
num_tiles
public int num_tiles()- Returns:
- the value of the
num_tiles
field.
-
tiles
Sets the address of the specifiedEXRTile.Buffer
to thetiles
field. -
next_level
Sets the address of the specifiedEXRImage
to thenext_level
field. -
level_x
Sets the specified value to thelevel_x
field. -
level_y
Sets the specified value to thelevel_y
field. -
images
Sets the address of the specifiedPointerBuffer
to theimages
field. -
width
Sets the specified value to thewidth
field. -
height
Sets the specified value to theheight
field. -
num_channels
Sets the specified value to thenum_channels
field.
-