Class VkDescriptorPoolSize
java.lang.Object
overrungl.struct.GroupType
overrungl.vulkan.struct.VkDescriptorPoolSize
- All Implemented Interfaces:
Addressable
- Direct Known Subclasses:
VkDescriptorPoolSize.Buffer
Layout
struct VkDescriptorPoolSize {
(int) VkDescriptorType type;
uint32_t descriptorCount;
};
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final GroupLayout
The struct layout ofVkDescriptorPoolSize
.static final MemoryLayout
The memory layout ofdescriptorCount
.static final MemoryLayout
The memory layout oftype
.static final long
The byte offset ofdescriptorCount
.static final long
The byte offset oftype
.static final VarHandle
TheVarHandle
ofdescriptorCount
of type(MemorySegment base, long baseOffset, long index)MemorySegment
.static final VarHandle
-
Constructor Summary
ConstructorsConstructorDescriptionVkDescriptorPoolSize
(MemorySegment segment) CreatesVkDescriptorPoolSize
with the given segment. -
Method Summary
Modifier and TypeMethodDescriptionstatic VkDescriptorPoolSize
alloc
(SegmentAllocator allocator) Allocates aVkDescriptorPoolSize
with the given segment allocator.static VkDescriptorPoolSize.Buffer
alloc
(SegmentAllocator allocator, long count) Allocates aVkDescriptorPoolSize
with the given segment allocator and count.asBuffer()
Converts this instance to a buffer.Copies from the given source.int
ReturnsdescriptorCount
.descriptorCount
(int value) SetsdescriptorCount
with the given value.static int
descriptorCount
(MemorySegment segment, long index) ReturnsdescriptorCount
at the given index.static void
descriptorCount
(MemorySegment segment, long index, int value) SetsdescriptorCount
with the given value at the given index.static VkDescriptorPoolSize.Buffer
of
(MemorySegment segment) CreatesVkDescriptorPoolSize
with the given segment.static VkDescriptorPoolSize
ofNative
(MemorySegment segment) CreatesVkDescriptorPoolSize
with the given segment.static VkDescriptorPoolSize.Buffer
ofNative
(MemorySegment segment, long count) CreatesVkDescriptorPoolSize
with the given segment.int
type()
Returnstype
.type
(int value) Setstype
with the given value.static int
type
(MemorySegment segment, long index) Returnstype
at the given index.static void
type
(MemorySegment segment, long index, int value) Setstype
with the given value at the given index.Methods inherited from class overrungl.struct.GroupType
estimateCount, estimateCount, groupLayout, segment
-
Field Details
-
LAYOUT
The struct layout ofVkDescriptorPoolSize
. -
OFFSET_type
public static final long OFFSET_typeThe byte offset oftype
. -
LAYOUT_type
The memory layout oftype
. -
VH_type
-
OFFSET_descriptorCount
public static final long OFFSET_descriptorCountThe byte offset ofdescriptorCount
. -
LAYOUT_descriptorCount
The memory layout ofdescriptorCount
. -
VH_descriptorCount
-
-
Constructor Details
-
VkDescriptorPoolSize
CreatesVkDescriptorPoolSize
with the given segment.- Parameters:
segment
- the memory segment
-
-
Method Details
-
of
CreatesVkDescriptorPoolSize
with the given segment.- Parameters:
segment
- the memory segment- Returns:
- the created instance or
null
if the segment isNULL
-
ofNative
Creates
VkDescriptorPoolSize
with the given segment.Reinterprets the segment if zero-length.
- Parameters:
segment
- the memory segment- Returns:
- the created instance or
null
if the segment isNULL
-
ofNative
Creates
VkDescriptorPoolSize
with the given segment.Reinterprets the segment if zero-length.
- Parameters:
segment
- the memory segmentcount
- the count of the buffer- Returns:
- the created instance or
null
if the segment isNULL
-
alloc
Allocates aVkDescriptorPoolSize
with the given segment allocator.- Parameters:
allocator
- the segment allocator- Returns:
- the allocated
VkDescriptorPoolSize
-
alloc
Allocates aVkDescriptorPoolSize
with the given segment allocator and count.- Parameters:
allocator
- the segment allocatorcount
- the count- Returns:
- the allocated
VkDescriptorPoolSize
-
copyFrom
Copies from the given source.- Parameters:
src
- the source- Returns:
this
-
asBuffer
Converts this instance to a buffer.- Returns:
- the buffer
-
type
Returnstype
at the given index.- Parameters:
segment
- the segment of the structindex
- the index of the struct buffer- Returns:
type
at the given index
-
type
public int type()Returnstype
.- Returns:
type
-
type
Setstype
with the given value at the given index.- Parameters:
segment
- the segment of the structindex
- the index of the struct buffervalue
- the value
-
type
Setstype
with the given value.- Parameters:
value
- the value- Returns:
this
-
descriptorCount
ReturnsdescriptorCount
at the given index.- Parameters:
segment
- the segment of the structindex
- the index of the struct buffer- Returns:
descriptorCount
at the given index
-
descriptorCount
public int descriptorCount()ReturnsdescriptorCount
.- Returns:
descriptorCount
-
descriptorCount
SetsdescriptorCount
with the given value at the given index.- Parameters:
segment
- the segment of the structindex
- the index of the struct buffervalue
- the value
-
descriptorCount
SetsdescriptorCount
with the given value.- Parameters:
value
- the value- Returns:
this
-