Package org.lwjgl.nuklear
Class NkMemoryStatus
- All Implemented Interfaces:
AutoCloseable,NativeResource,Pointer
struct nk_memory_status {
void * memory;
unsigned int type;
nk_size size;
nk_size allocated;
nk_size needed;
nk_size calls;
}-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class org.lwjgl.system.Struct
Struct.StructValidationNested classes/interfaces inherited from interface org.lwjgl.system.Pointer
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 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
ConstructorsConstructorDescriptionNkMemoryStatus(ByteBuffer container) Creates aNkMemoryStatusinstance at the current position of the specifiedByteBuffercontainer. -
Method Summary
Modifier and TypeMethodDescriptionlongstatic NkMemoryStatuscalloc()Returns a newNkMemoryStatusinstance allocated withmemCalloc.static NkMemoryStatus.Buffercalloc(int capacity) Returns a newNkMemoryStatus.Bufferinstance allocated withmemCalloc.static NkMemoryStatus.Buffercalloc(int capacity, MemoryStack stack) Returns a newNkMemoryStatus.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static NkMemoryStatuscalloc(MemoryStack stack) Returns a newNkMemoryStatusinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.longcalls()static NkMemoryStatuscreate()Returns a newNkMemoryStatusinstance allocated withBufferUtils.static NkMemoryStatus.Buffercreate(int capacity) Returns a newNkMemoryStatus.Bufferinstance allocated withBufferUtils.static NkMemoryStatuscreate(long address) Returns a newNkMemoryStatusinstance for the specified memory address.static NkMemoryStatus.Buffercreate(long address, int capacity) Create aNkMemoryStatus.Bufferinstance at the specified memory.static @Nullable NkMemoryStatuscreateSafe(long address) static @Nullable NkMemoryStatus.BuffercreateSafe(long address, int capacity) static NkMemoryStatusmalloc()Returns a newNkMemoryStatusinstance allocated withmemAlloc.static NkMemoryStatus.Buffermalloc(int capacity) Returns a newNkMemoryStatus.Bufferinstance allocated withmemAlloc.static NkMemoryStatus.Buffermalloc(int capacity, MemoryStack stack) Returns a newNkMemoryStatus.Bufferinstance allocated on the specifiedMemoryStack.static NkMemoryStatusmalloc(MemoryStack stack) Returns a newNkMemoryStatusinstance allocated on the specifiedMemoryStack.memory()static longnallocated(long struct) Unsafe version ofallocated().static longncalls(long struct) Unsafe version ofcalls().longneeded()static ByteBuffernmemory(long struct) Unsafe version ofmemory.static longnneeded(long struct) Unsafe version ofneeded().static longnsize(long struct) Unsafe version ofsize().static intntype(long struct) Unsafe version oftype().longsize()intsizeof()Returnssizeof(struct).inttype()Methods 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. -
MEMORY
public static final int MEMORYThe struct member offsets. -
TYPE
public static final int TYPEThe struct member offsets. -
SIZE
public static final int SIZEThe 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.
-
-
Constructor Details
-
NkMemoryStatus
Creates aNkMemoryStatusinstance 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()Description copied from class:StructReturnssizeof(struct).- Specified by:
sizeofin classStruct<NkMemoryStatus>
-
memory
- Returns:
- a
ByteBufferview of the data pointed to by thememoryfield.
-
type
public int type()- Returns:
- the value of the
typefield.
-
size
public long size()- Returns:
- the value of the
sizefield.
-
allocated
public long allocated()- Returns:
- the value of the
allocatedfield.
-
needed
public long needed()- Returns:
- the value of the
neededfield.
-
calls
public long calls()- Returns:
- the value of the
callsfield.
-
malloc
Returns a newNkMemoryStatusinstance allocated withmemAlloc. The instance must be explicitly freed. -
calloc
Returns a newNkMemoryStatusinstance allocated withmemCalloc. The instance must be explicitly freed. -
create
Returns a newNkMemoryStatusinstance allocated withBufferUtils. -
create
Returns a newNkMemoryStatusinstance for the specified memory address. -
createSafe
-
malloc
Returns a newNkMemoryStatus.Bufferinstance allocated withmemAlloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
calloc
Returns a newNkMemoryStatus.Bufferinstance allocated withmemCalloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
create
Returns a newNkMemoryStatus.Bufferinstance allocated withBufferUtils.- Parameters:
capacity- the buffer capacity
-
create
Create aNkMemoryStatus.Bufferinstance at the specified memory.- Parameters:
address- the memory addresscapacity- the buffer capacity
-
createSafe
-
malloc
Returns a newNkMemoryStatusinstance allocated on the specifiedMemoryStack.- Parameters:
stack- the stack from which to allocate
-
calloc
Returns a newNkMemoryStatusinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
stack- the stack from which to allocate
-
malloc
Returns a newNkMemoryStatus.Bufferinstance allocated on the specifiedMemoryStack.- Parameters:
capacity- the buffer capacitystack- the stack from which to allocate
-
calloc
Returns a newNkMemoryStatus.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
capacity- the buffer capacitystack- the stack from which to allocate
-
nmemory
Unsafe version ofmemory. -
ntype
public static int ntype(long struct) Unsafe version oftype(). -
nsize
public static long nsize(long struct) Unsafe version ofsize(). -
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().
-