Record Class VkMicromapTriangleEXT
java.lang.Object
java.lang.Record
club.doki7.vulkan.datatype.VkMicromapTriangleEXT
- All Implemented Interfaces:
IPointer
,IVkMicromapTriangleEXT
@ValueBasedCandidate
@UnsafeConstructor
public record VkMicromapTriangleEXT(@NotNull MemorySegment segment)
extends Record
implements IVkMicromapTriangleEXT
Represents a pointer to a VkMicromapTriangleEXT
structure in native memory.
Structure
typedef struct VkMicromapTriangleEXT {
uint32_t dataOffset
;
uint16_t subdivisionLevel
;
uint16_t format
;
} VkMicromapTriangleEXT;
Contracts
The property segment()
should always be not-null
(segment != NULL && !segment.equals(MemorySegment.NULL)
), and properly aligned to
LAYOUT.byteAlignment()
bytes. To represent null pointer, you may use a Java
null
instead. See the documentation of IPointer.segment()
for more details.
The constructor of this class is marked as UnsafeConstructor
, because it does not
perform any runtime check. The constructor can be useful for automatic code generators.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final record
Represents a pointer to / an array ofVkMicromapTriangleEXT
structure(s) in native memory. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final long
static final StructLayout
static final ValueLayout.OfInt
static final ValueLayout.OfShort
static final ValueLayout.OfShort
static final long
static final long
static final long
static final MemoryLayout.PathElement
static final MemoryLayout.PathElement
static final MemoryLayout.PathElement
static final long
static final long
static final long
-
Constructor Summary
ConstructorsConstructorDescriptionVkMicromapTriangleEXT
(@NotNull MemorySegment segment) Creates an instance of aVkMicromapTriangleEXT
record class. -
Method Summary
Modifier and TypeMethodDescriptionstatic VkMicromapTriangleEXT
static VkMicromapTriangleEXT.Ptr
static VkMicromapTriangleEXT
clone
(Arena arena, VkMicromapTriangleEXT src) int
dataOffset
(int value) final boolean
Indicates whether some other object is "equal to" this one.short
format()
format
(short value) final int
hashCode()
Returns a hash code value for this object.@NotNull MemorySegment
segment()
Returns the value of thesegment
record component.short
subdivisionLevel
(short value) final String
toString()
Returns a string representation of this record class.
-
Field Details
-
LAYOUT
-
BYTES
public static final long BYTES -
PATH$dataOffset
-
PATH$subdivisionLevel
-
PATH$format
-
LAYOUT$dataOffset
-
LAYOUT$subdivisionLevel
-
LAYOUT$format
-
SIZE$dataOffset
public static final long SIZE$dataOffset -
SIZE$subdivisionLevel
public static final long SIZE$subdivisionLevel -
SIZE$format
public static final long SIZE$format -
OFFSET$dataOffset
public static final long OFFSET$dataOffset -
OFFSET$subdivisionLevel
public static final long OFFSET$subdivisionLevel -
OFFSET$format
public static final long OFFSET$format
-
-
Constructor Details
-
VkMicromapTriangleEXT
Creates an instance of aVkMicromapTriangleEXT
record class.- Parameters:
segment
- the value for thesegment
record component
-
-
Method Details
-
allocate
-
allocate
-
clone
-
dataOffset
-
dataOffset
-
subdivisionLevel
-
subdivisionLevel
-
format
-
format
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
segment
Returns the value of thesegment
record component.
-