Class VkSubpassBeginInfo
java.lang.Object
overrungl.struct.GroupType
overrungl.vulkan.struct.VkSubpassBeginInfo
- All Implemented Interfaces:
Addressable
Represents VkSubpassBeginInfo.
Layout
struct VkSubpassBeginInfo {
(int) VkStructureType sType;
const void* pNext;
(int) VkSubpassContents contents;
};
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StructLayoutThe struct layout ofVkSubpassBeginInfo.static final MemoryLayoutThe memory layout ofcontents.static final MemoryLayoutThe memory layout ofpNext.static final MemoryLayoutThe memory layout ofsType.static final longThe byte offset ofcontents.static final longThe byte offset ofpNext.static final longThe byte offset ofsType.static final VarHandlestatic final VarHandlestatic final VarHandle -
Constructor Summary
ConstructorsConstructorDescriptionVkSubpassBeginInfo(MemorySegment segment, long elementCount) CreatesVkSubpassBeginInfowith the given segment. -
Method Summary
Modifier and TypeMethodDescriptionstatic VkSubpassBeginInfoalloc(SegmentAllocator allocator) Allocates aVkSubpassBeginInfowith the given segment allocator.static VkSubpassBeginInfoalloc(SegmentAllocator allocator, long count) Allocates aVkSubpassBeginInfowith the given segment allocator and count.asSlice(long index) Creates a slice ofVkSubpassBeginInfo.asSlice(long index, long count) Creates a slice ofVkSubpassBeginInfo.at(long index, Consumer<VkSubpassBeginInfo> func) VisitsVkSubpassBeginInfobuffer at the given index.intcontents()Returnscontents.contents(int value) Setscontentswith the given value.static intcontents(MemorySegment segment, long index) Returnscontentsat the given index.static voidcontents(MemorySegment segment, long index, int value) Setscontentswith the given value at the given index.intcontentsAt(long index) Returnscontentsat the given index.contentsAt(long index, int value) Setscontentswith the given value at the given index.Copies from the given source.static VkSubpassBeginInfoof(MemorySegment segment) CreatesVkSubpassBeginInfowith the given segment.static VkSubpassBeginInfoofNative(MemorySegment segment) CreatesVkSubpassBeginInfowith the given segment.static VkSubpassBeginInfoofNative(MemorySegment segment, long count) CreatesVkSubpassBeginInfowith the given segment.pNext()ReturnspNext.pNext(MemorySegment value) SetspNextwith the given value.static MemorySegmentpNext(MemorySegment segment, long index) ReturnspNextat the given index.static voidpNext(MemorySegment segment, long index, MemorySegment value) SetspNextwith the given value at the given index.pNextAt(long index) ReturnspNextat the given index.pNextAt(long index, MemorySegment value) SetspNextwith the given value at the given index.reinterpret(long count) Reinterprets this buffer with the given count.intsType()ReturnssType.sType(int value) SetssTypewith the given value.static intsType(MemorySegment segment, long index) ReturnssTypeat the given index.static voidsType(MemorySegment segment, long index, int value) SetssTypewith the given value at the given index.intsTypeAt(long index) ReturnssTypeat the given index.sTypeAt(long index, int value) SetssTypewith the given value at the given index.Methods inherited from class GroupType
estimateCount, estimateCount, groupLayout, segment
-
Field Details
-
LAYOUT
The struct layout ofVkSubpassBeginInfo. -
OFFSET_sType
public static final long OFFSET_sTypeThe byte offset ofsType. -
LAYOUT_sType
The memory layout ofsType. -
VH_sType
-
OFFSET_pNext
public static final long OFFSET_pNextThe byte offset ofpNext. -
LAYOUT_pNext
The memory layout ofpNext. -
VH_pNext
-
OFFSET_contents
public static final long OFFSET_contentsThe byte offset ofcontents. -
LAYOUT_contents
The memory layout ofcontents. -
VH_contents
-
-
Constructor Details
-
VkSubpassBeginInfo
CreatesVkSubpassBeginInfowith the given segment.- Parameters:
segment- the memory segmentelementCount- the element count of this struct buffer
-
-
Method Details
-
of
CreatesVkSubpassBeginInfowith the given segment.- Parameters:
segment- the memory segment- Returns:
- the created instance or
nullif the segment isNULL
-
ofNative
Creates
VkSubpassBeginInfowith the given segment.Reinterprets the segment if zero-length.
- Parameters:
segment- the memory segment- Returns:
- the created instance or
nullif the segment isNULL
-
ofNative
Creates
VkSubpassBeginInfowith the given segment.Reinterprets the segment if zero-length.
- Parameters:
segment- the memory segmentcount- the count of the buffer- Returns:
- the created instance or
nullif the segment isNULL
-
alloc
Allocates aVkSubpassBeginInfowith the given segment allocator.- Parameters:
allocator- the segment allocator- Returns:
- the allocated
VkSubpassBeginInfo
-
alloc
Allocates aVkSubpassBeginInfowith the given segment allocator and count.- Parameters:
allocator- the segment allocatorcount- the count- Returns:
- the allocated
VkSubpassBeginInfo
-
copyFrom
Copies from the given source.- Parameters:
src- the source- Returns:
this
-
reinterpret
Reinterprets this buffer with the given count.- Parameters:
count- the new count- Returns:
- the reinterpreted buffer
-
sType
ReturnssTypeat the given index.- Parameters:
segment- the segment of the structindex- the index of the struct buffer- Returns:
sTypeat the given index
-
sType
public int sType()ReturnssType.- Returns:
sType
-
sType
SetssTypewith the given value at the given index.- Parameters:
segment- the segment of the structindex- the index of the struct buffervalue- the value
-
sType
SetssTypewith the given value.- Parameters:
value- the value- Returns:
this
-
pNext
ReturnspNextat the given index.- Parameters:
segment- the segment of the structindex- the index of the struct buffer- Returns:
pNextat the given index
-
pNext
-
pNext
SetspNextwith the given value at the given index.- Parameters:
segment- the segment of the structindex- the index of the struct buffervalue- the value
-
pNext
SetspNextwith the given value.- Parameters:
value- the value- Returns:
this
-
contents
Returnscontentsat the given index.- Parameters:
segment- the segment of the structindex- the index of the struct buffer- Returns:
contentsat the given index
-
contents
public int contents()Returnscontents.- Returns:
contents
-
contents
Setscontentswith the given value at the given index.- Parameters:
segment- the segment of the structindex- the index of the struct buffervalue- the value
-
contents
Setscontentswith the given value.- Parameters:
value- the value- Returns:
this
-
asSlice
Creates a slice ofVkSubpassBeginInfo.- Parameters:
index- the index of the struct buffer- Returns:
- the slice of
VkSubpassBeginInfo
-
asSlice
Creates a slice ofVkSubpassBeginInfo.- Parameters:
index- the index of the struct buffercount- the count- Returns:
- the slice of
VkSubpassBeginInfo
-
at
VisitsVkSubpassBeginInfobuffer at the given index.- Parameters:
index- the index of this bufferfunc- the function to run with the slice of this buffer- Returns:
this
-
sTypeAt
public int sTypeAt(long index) ReturnssTypeat the given index.- Parameters:
index- the index of the struct buffer- Returns:
sTypeat the given index
-
sTypeAt
SetssTypewith the given value at the given index.- Parameters:
index- the index of the struct buffervalue- the value- Returns:
this
-
pNextAt
ReturnspNextat the given index.- Parameters:
index- the index of the struct buffer- Returns:
pNextat the given index
-
pNextAt
SetspNextwith the given value at the given index.- Parameters:
index- the index of the struct buffervalue- the value- Returns:
this
-
contentsAt
public int contentsAt(long index) Returnscontentsat the given index.- Parameters:
index- the index of the struct buffer- Returns:
contentsat the given index
-
contentsAt
Setscontentswith the given value at the given index.- Parameters:
index- the index of the struct buffervalue- the value- Returns:
this
-