Package org.lwjgl.nuklear
Class NkBuffer
- All Implemented Interfaces:
AutoCloseable
,NativeResource
,Pointer
struct nk_buffer {
{@link NkBufferMarker struct nk_buffer_marker} marker[2];
{@link NkAllocator struct nk_allocator} pool;
enum nk_allocation_type type;
{@link NkMemory struct nk_memory} memory;
float grow_factor;
nk_size allocated;
nk_size needed;
nk_size calls;
nk_size size;
}
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class org.lwjgl.system.Struct
Struct.StructValidation
Nested classes/interfaces inherited from interface org.lwjgl.system.Pointer
Pointer.Default
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
The struct alignment in bytes.static final int
The struct member offsets.static final int
The struct member offsets.static final int
The struct member offsets.static final int
The struct member offsets.static final int
The struct member offsets.static final int
The struct member offsets.static final int
The struct member offsets.static final int
The struct member offsets.static final int
The struct size in bytes.static final int
The struct member offsets.Fields inherited from interface org.lwjgl.system.Pointer
BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE
-
Constructor Summary
ConstructorsConstructorDescriptionNkBuffer
(ByteBuffer container) Creates aNkBuffer
instance at the current position of the specifiedByteBuffer
container. -
Method Summary
Modifier and TypeMethodDescriptionlong
static NkBuffer
calloc()
Returns a newNkBuffer
instance allocated withmemCalloc
.static NkBuffer.Buffer
calloc
(int capacity) Returns a newNkBuffer.Buffer
instance allocated withmemCalloc
.static NkBuffer.Buffer
calloc
(int capacity, MemoryStack stack) Returns a newNkBuffer.Buffer
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.static NkBuffer
calloc
(MemoryStack stack) Returns a newNkBuffer
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.static NkBuffer
Deprecated.static NkBuffer.Buffer
callocStack
(int capacity) Deprecated.static NkBuffer.Buffer
callocStack
(int capacity, MemoryStack stack) Deprecated.static NkBuffer
callocStack
(MemoryStack stack) Deprecated.long
calls()
static NkBuffer
create()
Returns a newNkBuffer
instance allocated withBufferUtils
.static NkBuffer.Buffer
create
(int capacity) Returns a newNkBuffer.Buffer
instance allocated withBufferUtils
.static NkBuffer
create
(long address) Returns a newNkBuffer
instance for the specified memory address.static NkBuffer.Buffer
create
(long address, int capacity) Create aNkBuffer.Buffer
instance at the specified memory.static @Nullable NkBuffer
createSafe
(long address) static @Nullable NkBuffer.Buffer
createSafe
(long address, int capacity) float
static NkBuffer
malloc()
Returns a newNkBuffer
instance allocated withmemAlloc
.static NkBuffer.Buffer
malloc
(int capacity) Returns a newNkBuffer.Buffer
instance allocated withmemAlloc
.static NkBuffer.Buffer
malloc
(int capacity, MemoryStack stack) Returns a newNkBuffer.Buffer
instance allocated on the specifiedMemoryStack
.static NkBuffer
malloc
(MemoryStack stack) Returns a newNkBuffer
instance allocated on the specifiedMemoryStack
.static NkBuffer
Deprecated.static NkBuffer.Buffer
mallocStack
(int capacity) Deprecated.static NkBuffer.Buffer
mallocStack
(int capacity, MemoryStack stack) Deprecated.static NkBuffer
mallocStack
(MemoryStack stack) Deprecated.marker()
marker
(int index) memory()
static long
nallocated
(long struct) Unsafe version ofallocated()
.static long
ncalls
(long struct) Unsafe version ofcalls()
.long
needed()
static float
ngrow_factor
(long struct) Unsafe version ofgrow_factor()
.static NkBufferMarker.Buffer
nmarker
(long struct) Unsafe version ofmarker()
.static NkBufferMarker
nmarker
(long struct, int index) Unsafe version ofmarker
.static NkMemory
nmemory
(long struct) Unsafe version ofmemory()
.static long
nneeded
(long struct) Unsafe version ofneeded()
.static NkAllocator
npool
(long struct) Unsafe version ofpool()
.static long
nsize
(long struct) Unsafe version ofsize()
.static int
ntype
(long struct) Unsafe version oftype()
.pool()
long
size()
int
sizeof()
Returnssizeof(struct)
.int
type()
Methods inherited from class org.lwjgl.system.Pointer.Default
address, equals, hashCode, toString
Methods inherited from interface org.lwjgl.system.NativeResource
close, free
-
Field Details
-
SIZEOF
public static final int SIZEOFThe struct size in bytes. -
ALIGNOF
public static final int ALIGNOFThe struct alignment in bytes. -
MARKER
public static final int MARKERThe struct member offsets. -
POOL
public static final int POOLThe struct member offsets. -
TYPE
public static final int TYPEThe struct member offsets. -
MEMORY
public static final int MEMORYThe struct member offsets. -
GROW_FACTOR
public static final int GROW_FACTORThe struct member offsets. -
ALLOCATED
public static final int ALLOCATEDThe struct member offsets. -
NEEDED
public static final int NEEDEDThe struct member offsets. -
CALLS
public static final int CALLSThe struct member offsets. -
SIZE
public static final int SIZEThe struct member offsets.
-
-
Constructor Details
-
NkBuffer
Creates aNkBuffer
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 Details
-
sizeof
public int sizeof()Description copied from class:Struct
Returnssizeof(struct)
. -
marker
- Returns:
- a
NkBufferMarker
.Buffer view of themarker
field.
-
marker
- Returns:
- a
NkBufferMarker
view of the struct at the specified index of themarker
field.
-
pool
- Returns:
- a
NkAllocator
view of thepool
field.
-
type
public int type()- Returns:
- the value of the
type
field.
-
memory
- Returns:
- a
NkMemory
view of thememory
field.
-
grow_factor
public float grow_factor()- Returns:
- the value of the
grow_factor
field.
-
allocated
public long allocated()- Returns:
- the value of the
allocated
field.
-
needed
public long needed()- Returns:
- the value of the
needed
field.
-
calls
public long calls()- Returns:
- the value of the
calls
field.
-
size
public long size()- Returns:
- the value of the
size
field.
-
malloc
Returns a newNkBuffer
instance allocated withmemAlloc
. The instance must be explicitly freed. -
calloc
Returns a newNkBuffer
instance allocated withmemCalloc
. The instance must be explicitly freed. -
create
Returns a newNkBuffer
instance allocated withBufferUtils
. -
create
Returns a newNkBuffer
instance for the specified memory address. -
createSafe
-
malloc
Returns a newNkBuffer.Buffer
instance allocated withmemAlloc
. The instance must be explicitly freed.- Parameters:
capacity
- the buffer capacity
-
calloc
Returns a newNkBuffer.Buffer
instance allocated withmemCalloc
. The instance must be explicitly freed.- Parameters:
capacity
- the buffer capacity
-
create
Returns a newNkBuffer.Buffer
instance allocated withBufferUtils
.- Parameters:
capacity
- the buffer capacity
-
create
Create aNkBuffer.Buffer
instance at the specified memory.- Parameters:
address
- the memory addresscapacity
- the buffer capacity
-
createSafe
-
mallocStack
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(MemoryStack)
instead. -
callocStack
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(MemoryStack)
instead. -
mallocStack
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(MemoryStack)
instead. -
callocStack
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(MemoryStack)
instead. -
mallocStack
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(int, MemoryStack)
instead. -
callocStack
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(int, MemoryStack)
instead. -
mallocStack
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(int, MemoryStack)
instead. -
callocStack
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(int, MemoryStack)
instead. -
malloc
Returns a newNkBuffer
instance allocated on the specifiedMemoryStack
.- Parameters:
stack
- the stack from which to allocate
-
calloc
Returns a newNkBuffer
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.- Parameters:
stack
- the stack from which to allocate
-
malloc
Returns a newNkBuffer.Buffer
instance allocated on the specifiedMemoryStack
.- Parameters:
capacity
- the buffer capacitystack
- the stack from which to allocate
-
calloc
Returns a newNkBuffer.Buffer
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.- Parameters:
capacity
- the buffer capacitystack
- the stack from which to allocate
-
nmarker
Unsafe version ofmarker()
. -
nmarker
Unsafe version ofmarker
. -
npool
Unsafe version ofpool()
. -
ntype
public static int ntype(long struct) Unsafe version oftype()
. -
nmemory
Unsafe version ofmemory()
. -
ngrow_factor
public static float ngrow_factor(long struct) Unsafe version ofgrow_factor()
. -
nallocated
public static long nallocated(long struct) Unsafe version ofallocated()
. -
nneeded
public static long nneeded(long struct) Unsafe version ofneeded()
. -
ncalls
public static long ncalls(long struct) Unsafe version ofcalls()
. -
nsize
public static long nsize(long struct) Unsafe version ofsize()
.
-