Package org.lwjgl.assimp
Class AIMetaDataEntry
- All Implemented Interfaces:
AutoCloseable,NativeResource,Pointer
struct aiMetadataEntry {
aiMetadataType mType;
void * mData;
}-
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 size in bytes.Fields inherited from interface org.lwjgl.system.Pointer
BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE -
Constructor Summary
ConstructorsConstructorDescriptionAIMetaDataEntry(ByteBuffer container) Creates aAIMetaDataEntryinstance at the current position of the specifiedByteBuffercontainer. -
Method Summary
Modifier and TypeMethodDescriptionstatic AIMetaDataEntrycalloc()Returns a newAIMetaDataEntryinstance allocated withmemCalloc.static AIMetaDataEntry.Buffercalloc(int capacity) Returns a newAIMetaDataEntry.Bufferinstance allocated withmemCalloc.static AIMetaDataEntry.Buffercalloc(int capacity, MemoryStack stack) Returns a newAIMetaDataEntry.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static AIMetaDataEntrycalloc(MemoryStack stack) Returns a newAIMetaDataEntryinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static AIMetaDataEntrycreate()Returns a newAIMetaDataEntryinstance allocated withBufferUtils.static AIMetaDataEntry.Buffercreate(int capacity) Returns a newAIMetaDataEntry.Bufferinstance allocated withBufferUtils.static AIMetaDataEntrycreate(long address) Returns a newAIMetaDataEntryinstance for the specified memory address.static AIMetaDataEntry.Buffercreate(long address, int capacity) Create aAIMetaDataEntry.Bufferinstance at the specified memory.static @Nullable AIMetaDataEntrycreateSafe(long address) static @Nullable AIMetaDataEntry.BuffercreateSafe(long address, int capacity) static AIMetaDataEntrymalloc()Returns a newAIMetaDataEntryinstance allocated withmemAlloc.static AIMetaDataEntry.Buffermalloc(int capacity) Returns a newAIMetaDataEntry.Bufferinstance allocated withmemAlloc.static AIMetaDataEntry.Buffermalloc(int capacity, MemoryStack stack) Returns a newAIMetaDataEntry.Bufferinstance allocated on the specifiedMemoryStack.static AIMetaDataEntrymalloc(MemoryStack stack) Returns a newAIMetaDataEntryinstance allocated on the specifiedMemoryStack.mData(int capacity) mData(ByteBuffer value) Sets the address of the specifiedByteBufferto themDatafield.intmType()mType(int value) Sets the specified value to themTypefield.static ByteBuffernmData(long struct, int capacity) Unsafe version ofmData.static voidnmData(long struct, ByteBuffer value) Unsafe version ofmData.static intnmType(long struct) Unsafe version ofmType().static voidnmType(long struct, int value) Unsafe version ofmType.set(int mType, ByteBuffer mData) Initializes this struct with the specified values.set(AIMetaDataEntry src) Copies the specified struct data to this struct.intsizeof()Returnssizeof(struct).static voidvalidate(long struct) Validates pointer members that should not beNULL.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. -
MTYPE
public static final int MTYPEThe struct member offsets. -
MDATA
public static final int MDATAThe struct member offsets.
-
-
Constructor Details
-
AIMetaDataEntry
Creates aAIMetaDataEntryinstance 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<AIMetaDataEntry>
-
mType
public int mType()- Returns:
- the value of the
mTypefield.
-
mData
- Returns:
- a
ByteBufferview of the data pointed to by themDatafield.
-
mType
Sets the specified value to themTypefield. -
mData
Sets the address of the specifiedByteBufferto themDatafield. -
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 newAIMetaDataEntryinstance allocated withmemAlloc. The instance must be explicitly freed. -
calloc
Returns a newAIMetaDataEntryinstance allocated withmemCalloc. The instance must be explicitly freed. -
create
Returns a newAIMetaDataEntryinstance allocated withBufferUtils. -
create
Returns a newAIMetaDataEntryinstance for the specified memory address. -
createSafe
-
malloc
Returns a newAIMetaDataEntry.Bufferinstance allocated withmemAlloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
calloc
Returns a newAIMetaDataEntry.Bufferinstance allocated withmemCalloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
create
Returns a newAIMetaDataEntry.Bufferinstance allocated withBufferUtils.- Parameters:
capacity- the buffer capacity
-
create
Create aAIMetaDataEntry.Bufferinstance at the specified memory.- Parameters:
address- the memory addresscapacity- the buffer capacity
-
createSafe
-
malloc
Returns a newAIMetaDataEntryinstance allocated on the specifiedMemoryStack.- Parameters:
stack- the stack from which to allocate
-
calloc
Returns a newAIMetaDataEntryinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
stack- the stack from which to allocate
-
malloc
Returns a newAIMetaDataEntry.Bufferinstance allocated on the specifiedMemoryStack.- Parameters:
capacity- the buffer capacitystack- the stack from which to allocate
-
calloc
Returns a newAIMetaDataEntry.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
capacity- the buffer capacitystack- the stack from which to allocate
-
nmType
public static int nmType(long struct) Unsafe version ofmType(). -
nmData
Unsafe version ofmData. -
nmType
public static void nmType(long struct, int value) Unsafe version ofmType. -
nmData
Unsafe version ofmData. -
validate
public static void validate(long struct) Validates pointer members that should not beNULL.- Parameters:
struct- the struct to validate
-