Package org.lwjgl.nuklear
Class NkColor
- All Implemented Interfaces:
AutoCloseable,NativeResource,Pointer
struct nk_color {
nk_byte r;
nk_byte g;
nk_byte b;
nk_byte a;
}-
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 member offsets.static 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 size in bytes.Fields inherited from interface org.lwjgl.system.Pointer
BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE -
Constructor Summary
ConstructorsConstructorDescriptionNkColor(ByteBuffer container) Creates aNkColorinstance at the current position of the specifiedByteBuffercontainer. -
Method Summary
Modifier and TypeMethodDescriptionbytea()a(byte value) Sets the specified value to theafield.byteb()b(byte value) Sets the specified value to thebfield.static NkColorcalloc()Returns a newNkColorinstance allocated withmemCalloc.static NkColor.Buffercalloc(int capacity) Returns a newNkColor.Bufferinstance allocated withmemCalloc.static NkColor.Buffercalloc(int capacity, MemoryStack stack) Returns a newNkColor.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static NkColorcalloc(MemoryStack stack) Returns a newNkColorinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static NkColorcreate()Returns a newNkColorinstance allocated withBufferUtils.static NkColor.Buffercreate(int capacity) Returns a newNkColor.Bufferinstance allocated withBufferUtils.static NkColorcreate(long address) Returns a newNkColorinstance for the specified memory address.static NkColor.Buffercreate(long address, int capacity) Create aNkColor.Bufferinstance at the specified memory.static @Nullable NkColorcreateSafe(long address) static @Nullable NkColor.BuffercreateSafe(long address, int capacity) byteg()g(byte value) Sets the specified value to thegfield.static NkColormalloc()Returns a newNkColorinstance allocated withmemAlloc.static NkColor.Buffermalloc(int capacity) Returns a newNkColor.Bufferinstance allocated withmemAlloc.static NkColor.Buffermalloc(int capacity, MemoryStack stack) Returns a newNkColor.Bufferinstance allocated on the specifiedMemoryStack.static NkColormalloc(MemoryStack stack) Returns a newNkColorinstance allocated on the specifiedMemoryStack.static bytena(long struct) Unsafe version ofa().static voidna(long struct, byte value) Unsafe version ofa.static bytenb(long struct) Unsafe version ofb().static voidnb(long struct, byte value) Unsafe version ofb.static byteng(long struct) Unsafe version ofg().static voidng(long struct, byte value) Unsafe version ofg.static bytenr(long struct) Unsafe version ofr().static voidnr(long struct, byte value) Unsafe version ofr.byter()r(byte value) Sets the specified value to therfield.set(byte r, byte g, byte b, byte a) Initializes this struct with the specified values.Copies the specified struct data to this struct.intsizeof()Returnssizeof(struct).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. -
R
public static final int RThe struct member offsets. -
G
public static final int GThe struct member offsets. -
B
public static final int BThe struct member offsets. -
A
public static final int AThe struct member offsets.
-
-
Constructor Details
-
NkColor
Creates aNkColorinstance 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). -
r
public byte r()- Returns:
- the value of the
rfield.
-
g
public byte g()- Returns:
- the value of the
gfield.
-
b
public byte b()- Returns:
- the value of the
bfield.
-
a
public byte a()- Returns:
- the value of the
afield.
-
r
Sets the specified value to therfield. -
g
Sets the specified value to thegfield. -
b
Sets the specified value to thebfield. -
a
Sets the specified value to theafield. -
set
Initializes this struct with the specified values. -
set
Copies the specified struct data to this struct.- Parameters:
src- the source struct- Returns:
- this struct
-
malloc
Returns a newNkColorinstance allocated withmemAlloc. The instance must be explicitly freed. -
calloc
Returns a newNkColorinstance allocated withmemCalloc. The instance must be explicitly freed. -
create
Returns a newNkColorinstance allocated withBufferUtils. -
create
Returns a newNkColorinstance for the specified memory address. -
createSafe
-
malloc
Returns a newNkColor.Bufferinstance allocated withmemAlloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
calloc
Returns a newNkColor.Bufferinstance allocated withmemCalloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
create
Returns a newNkColor.Bufferinstance allocated withBufferUtils.- Parameters:
capacity- the buffer capacity
-
create
Create aNkColor.Bufferinstance at the specified memory.- Parameters:
address- the memory addresscapacity- the buffer capacity
-
createSafe
-
malloc
Returns a newNkColorinstance allocated on the specifiedMemoryStack.- Parameters:
stack- the stack from which to allocate
-
calloc
Returns a newNkColorinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
stack- the stack from which to allocate
-
malloc
Returns a newNkColor.Bufferinstance allocated on the specifiedMemoryStack.- Parameters:
capacity- the buffer capacitystack- the stack from which to allocate
-
calloc
Returns a newNkColor.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
capacity- the buffer capacitystack- the stack from which to allocate
-
nr
public static byte nr(long struct) Unsafe version ofr(). -
ng
public static byte ng(long struct) Unsafe version ofg(). -
nb
public static byte nb(long struct) Unsafe version ofb(). -
na
public static byte na(long struct) Unsafe version ofa(). -
nr
public static void nr(long struct, byte value) Unsafe version ofr. -
ng
public static void ng(long struct, byte value) Unsafe version ofg. -
nb
public static void nb(long struct, byte value) Unsafe version ofb. -
na
public static void na(long struct, byte value) Unsafe version ofa.
-