Package com.raylib.jextract
Class Texture
java.lang.Object
com.raylib.jextract.Texture
- Direct Known Subclasses:
Texture2D
,TextureCubemap
struct Texture {
unsigned int id;
int width;
int height;
int mipmaps;
int format;
}
-
Method Summary
Modifier and TypeMethodDescriptionstatic MemorySegment
allocate
(SegmentAllocator allocator) Allocate a segment of sizelayout().byteSize()
usingallocator
static MemorySegment
allocateArray
(long elementCount, SegmentAllocator allocator) Allocate an array of sizeelementCount
usingallocator
.static MemorySegment
asSlice
(MemorySegment array, long index) Obtains a slice ofarrayParam
which selects the array element atindex
.static int
format
(MemorySegment struct) Getter for field:int format
static void
format
(MemorySegment struct, int fieldValue) Setter for field:int format
static final ValueLayout.OfInt
Layout for field:int format
static final long
Offset for field:int format
static int
height
(MemorySegment struct) Getter for field:int height
static void
height
(MemorySegment struct, int fieldValue) Setter for field:int height
static final ValueLayout.OfInt
Layout for field:int height
static final long
Offset for field:int height
static int
id
(MemorySegment struct) Getter for field:unsigned int id
static void
id
(MemorySegment struct, int fieldValue) Setter for field:unsigned int id
static final ValueLayout.OfInt
Layout for field:unsigned int id
static final long
Offset for field:unsigned int id
static final GroupLayout
layout()
The layout of this structstatic int
mipmaps
(MemorySegment struct) Getter for field:int mipmaps
static void
mipmaps
(MemorySegment struct, int fieldValue) Setter for field:int mipmaps
static final ValueLayout.OfInt
Layout for field:int mipmaps
static final long
Offset for field:int mipmaps
static MemorySegment
reinterpret
(MemorySegment addr, long elementCount, Arena arena, Consumer<MemorySegment> cleanup) Reinterpretsaddr
using targetarena
and invalid input: '{@code cleanupAction) (if any). The returned segment has size {@code elementCount * layout().byteSize()}'static MemorySegment
reinterpret
(MemorySegment addr, Arena arena, Consumer<MemorySegment> cleanup) Reinterpretsaddr
using targetarena
and invalid input: '{@code cleanupAction) (if any). The returned segment has size {@code layout().byteSize()}'static long
sizeof()
The size (in bytes) of this structstatic int
width
(MemorySegment struct) Getter for field:int width
static void
width
(MemorySegment struct, int fieldValue) Setter for field:int width
static final ValueLayout.OfInt
Layout for field:int width
static final long
Offset for field:int width
-
Method Details
-
layout
The layout of this struct -
id$layout
Layout for field:unsigned int id
-
id$offset
public static final long id$offset()Offset for field:unsigned int id
-
id
Getter for field:unsigned int id
-
id
Setter for field:unsigned int id
-
width$layout
Layout for field:int width
-
width$offset
public static final long width$offset()Offset for field:int width
-
width
Getter for field:int width
-
width
Setter for field:int width
-
height$layout
Layout for field:int height
-
height$offset
public static final long height$offset()Offset for field:int height
-
height
Getter for field:int height
-
height
Setter for field:int height
-
mipmaps$layout
Layout for field:int mipmaps
-
mipmaps$offset
public static final long mipmaps$offset()Offset for field:int mipmaps
-
mipmaps
Getter for field:int mipmaps
-
mipmaps
Setter for field:int mipmaps
-
format$layout
Layout for field:int format
-
format$offset
public static final long format$offset()Offset for field:int format
-
format
Getter for field:int format
-
format
Setter for field:int format
-
asSlice
Obtains a slice ofarrayParam
which selects the array element atindex
. The returned segment has addressarrayParam.address() + index * layout().byteSize()
-
sizeof
public static long sizeof()The size (in bytes) of this struct -
allocate
Allocate a segment of sizelayout().byteSize()
usingallocator
-
allocateArray
Allocate an array of sizeelementCount
usingallocator
. The returned segment has sizeelementCount * layout().byteSize()
. -
reinterpret
public static MemorySegment reinterpret(MemorySegment addr, Arena arena, Consumer<MemorySegment> cleanup) Reinterpretsaddr
using targetarena
and invalid input: '{@code cleanupAction) (if any). The returned segment has size {@code layout().byteSize()}' -
reinterpret
public static MemorySegment reinterpret(MemorySegment addr, long elementCount, Arena arena, Consumer<MemorySegment> cleanup) Reinterpretsaddr
using targetarena
and invalid input: '{@code cleanupAction) (if any). The returned segment has size {@code elementCount * layout().byteSize()}'
-