Package org.lwjgl.nuklear
Class NkBuffer
java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<NkBuffer>
org.lwjgl.nuklear.NkBuffer
- All Implemented Interfaces:
AutoCloseable,org.lwjgl.system.NativeResource,org.lwjgl.system.Pointer
public class NkBuffer
extends org.lwjgl.system.Struct<NkBuffer>
implements org.lwjgl.system.NativeResource
Layout
struct nk_buffer {
struct nk_buffer_marker marker()[2];
struct nk_allocator pool();
enum nk_allocation_type type();
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
org.lwjgl.system.Struct.StructValidationNested classes/interfaces inherited from interface org.lwjgl.system.Pointer
org.lwjgl.system.Pointer.Default -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intThe struct alignment in bytes.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct size in bytes.static final intThe 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 aNkBufferinstance at the current position of the specifiedByteBuffercontainer. -
Method Summary
Modifier and TypeMethodDescriptionlongtotal amount of memory allocatedstatic NkBuffercalloc()Returns a newNkBufferinstance allocated withmemCalloc.static NkBuffer.Buffercalloc(int capacity) Returns a newNkBuffer.Bufferinstance allocated withmemCalloc.static NkBuffer.Buffercalloc(int capacity, org.lwjgl.system.MemoryStack stack) Returns a newNkBuffer.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static NkBuffercalloc(org.lwjgl.system.MemoryStack stack) Returns a newNkBufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static NkBufferDeprecated.static NkBuffer.BuffercallocStack(int capacity) Deprecated.static NkBuffer.BuffercallocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.static NkBuffercallocStack(org.lwjgl.system.MemoryStack stack) Deprecated.longcalls()number of allocation callsstatic NkBuffercreate()Returns a newNkBufferinstance allocated withBufferUtils.static NkBuffer.Buffercreate(int capacity) Returns a newNkBuffer.Bufferinstance allocated withBufferUtils.static NkBuffercreate(long address) Returns a newNkBufferinstance for the specified memory address.static NkBuffer.Buffercreate(long address, int capacity) Create aNkBuffer.Bufferinstance at the specified memory.static @Nullable NkBuffercreateSafe(long address) static @Nullable NkBuffer.BuffercreateSafe(long address, int capacity) floatgrowing factor for dynamic memory managementstatic NkBuffermalloc()Returns a newNkBufferinstance allocated withmemAlloc.static NkBuffer.Buffermalloc(int capacity) Returns a newNkBuffer.Bufferinstance allocated withmemAlloc.static NkBuffer.Buffermalloc(int capacity, org.lwjgl.system.MemoryStack stack) Returns a newNkBuffer.Bufferinstance allocated on the specifiedMemoryStack.static NkBuffermalloc(org.lwjgl.system.MemoryStack stack) Returns a newNkBufferinstance allocated on the specifiedMemoryStack.static NkBufferDeprecated.static NkBuffer.BuffermallocStack(int capacity) Deprecated.static NkBuffer.BuffermallocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.static NkBuffermallocStack(org.lwjgl.system.MemoryStack stack) Deprecated.marker()buffer marker to free a buffer to a certain offsetmarker(int index) buffer marker to free a buffer to a certain offsetmemory()memory and size of the current memory blockstatic longnallocated(long struct) Unsafe version ofallocated().static longncalls(long struct) Unsafe version ofcalls().longneeded()totally consumed memory given that enough memory is presentstatic floatngrow_factor(long struct) Unsafe version ofgrow_factor().static NkBufferMarker.Buffernmarker(long struct) Unsafe version ofmarker().static NkBufferMarkernmarker(long struct, int index) Unsafe version ofmarker.static NkMemorynmemory(long struct) Unsafe version ofmemory().static longnneeded(long struct) Unsafe version ofneeded().static NkAllocatornpool(long struct) Unsafe version ofpool().static longnsize(long struct) Unsafe version ofsize().static intntype(long struct) Unsafe version oftype().pool()allocator callback for dynamic bufferslongsize()current size of the bufferintsizeof()inttype()memory management typeMethods inherited from class org.lwjgl.system.Struct
clear, free, isNull, validate, validateMethods inherited from class org.lwjgl.system.Pointer.Default
address, equals, hashCode, toStringMethods 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 aNkBufferinstance 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 Details
-
sizeof
public int sizeof()- Specified by:
sizeofin classorg.lwjgl.system.Struct<NkBuffer>
-
marker
buffer marker to free a buffer to a certain offset -
marker
buffer marker to free a buffer to a certain offset -
pool
allocator callback for dynamic buffers -
type
public int type()memory management type -
memory
memory and size of the current memory block -
grow_factor
public float grow_factor()growing factor for dynamic memory management -
allocated
public long allocated()total amount of memory allocated -
needed
public long needed()totally consumed memory given that enough memory is present -
calls
public long calls()number of allocation calls -
size
public long size()current size of the buffer -
malloc
Returns a newNkBufferinstance allocated withmemAlloc. The instance must be explicitly freed. -
calloc
Returns a newNkBufferinstance allocated withmemCalloc. The instance must be explicitly freed. -
create
Returns a newNkBufferinstance allocated withBufferUtils. -
create
Returns a newNkBufferinstance for the specified memory address. -
createSafe
-
malloc
Returns a newNkBuffer.Bufferinstance allocated withmemAlloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
calloc
Returns a newNkBuffer.Bufferinstance allocated withmemCalloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
create
Returns a newNkBuffer.Bufferinstance allocated withBufferUtils.- Parameters:
capacity- the buffer capacity
-
create
Create aNkBuffer.Bufferinstance 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 public static NkBuffer.Buffer mallocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.Deprecated for removal in 3.4.0. Usemalloc(int, MemoryStack)instead. -
callocStack
@Deprecated public static NkBuffer.Buffer callocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.Deprecated for removal in 3.4.0. Usecalloc(int, MemoryStack)instead. -
malloc
Returns a newNkBufferinstance allocated on the specifiedMemoryStack.- Parameters:
stack- the stack from which to allocate
-
calloc
Returns a newNkBufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
stack- the stack from which to allocate
-
malloc
Returns a newNkBuffer.Bufferinstance allocated on the specifiedMemoryStack.- Parameters:
capacity- the buffer capacitystack- the stack from which to allocate
-
calloc
Returns a newNkBuffer.Bufferinstance allocated on the specifiedMemoryStackand 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().
-