Class BGFXEncoderStats
- All Implemented Interfaces:
Pointer
@NativeType("struct bgfx_encoder_stats_t")
public class BGFXEncoderStats
extends Struct<BGFXEncoderStats>
struct bgfx_encoder_stats_t {
int64_t cpuTimeBegin;
int64_t cpuTimeEnd;
}-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class Struct
Struct.StructValidationNested classes/interfaces inherited from interface 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 Pointer
BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE -
Constructor Summary
ConstructorsConstructorDescriptionBGFXEncoderStats(ByteBuffer container) Creates aBGFXEncoderStatsinstance at the current position of the specifiedByteBuffercontainer. -
Method Summary
Modifier and TypeMethodDescriptionlonglongstatic BGFXEncoderStatscreate(long address) Returns a newBGFXEncoderStatsinstance for the specified memory address.static BGFXEncoderStats.Buffercreate(long address, int capacity) Create aBGFXEncoderStats.Bufferinstance at the specified memory.static @Nullable BGFXEncoderStatscreateSafe(long address) static @Nullable BGFXEncoderStats.BuffercreateSafe(long address, int capacity) static longncpuTimeBegin(long struct) Unsafe version ofcpuTimeBegin().static longncpuTimeEnd(long struct) Unsafe version ofcpuTimeEnd().intsizeof()Returnssizeof(struct).Methods inherited from class Pointer.Default
address, equals, hashCode, toString
-
Field Details
-
SIZEOF
public static final int SIZEOFThe struct size in bytes. -
ALIGNOF
public static final int ALIGNOFThe struct alignment in bytes. -
CPUTIMEBEGIN
public static final int CPUTIMEBEGINThe struct member offsets. -
CPUTIMEEND
public static final int CPUTIMEENDThe struct member offsets.
-
-
Constructor Details
-
BGFXEncoderStats
Creates aBGFXEncoderStatsinstance 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<BGFXEncoderStats>
-
cpuTimeBegin
- Returns:
- the value of the
cpuTimeBeginfield.
-
cpuTimeEnd
- Returns:
- the value of the
cpuTimeEndfield.
-
create
Returns a newBGFXEncoderStatsinstance for the specified memory address. -
createSafe
-
create
Create aBGFXEncoderStats.Bufferinstance at the specified memory.- Parameters:
address- the memory addresscapacity- the buffer capacity
-
createSafe
-
ncpuTimeBegin
public static long ncpuTimeBegin(long struct) Unsafe version ofcpuTimeBegin(). -
ncpuTimeEnd
public static long ncpuTimeEnd(long struct) Unsafe version ofcpuTimeEnd().
-