Package org.lwjgl.vulkan
Class VkPipelineDynamicStateCreateInfo
java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkPipelineDynamicStateCreateInfo>
org.lwjgl.vulkan.VkPipelineDynamicStateCreateInfo
- All Implemented Interfaces:
AutoCloseable,org.lwjgl.system.NativeResource,org.lwjgl.system.Pointer
public class VkPipelineDynamicStateCreateInfo
extends org.lwjgl.system.Struct<VkPipelineDynamicStateCreateInfo>
implements org.lwjgl.system.NativeResource
Structure specifying parameters of a newly created pipeline dynamic state.
Valid Usage
- Each element of
pDynamicStatesmust be unique
Valid Usage (Implicit)
sTypemust beSTRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFOpNextmust beNULLflagsmust be 0- If
dynamicStateCountis not 0,pDynamicStatesmust be a valid pointer to an array ofdynamicStateCountvalidVkDynamicStatevalues
See Also
VkGraphicsPipelineCreateInfo, VkRayTracingPipelineCreateInfoKHR
Layout
struct VkPipelineDynamicStateCreateInfo {
VkStructureType sType();
void const * pNext();
VkPipelineDynamicStateCreateFlags flags();
uint32_t dynamicStateCount();
VkDynamicState const * pDynamicStates();
}-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classAn array ofVkPipelineDynamicStateCreateInfostructs.Nested classes/interfaces inherited from class org.lwjgl.system.Struct
org.lwjgl.system.Struct.StructValidationNested classes/interfaces inherited from interface org.lwjgl.system.Pointer
org.lwjgl.system.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 member offsets.static final intThe struct member offsets.static final intThe struct size in bytes.static final intThe struct member offsets.Fields inherited from interface org.lwjgl.system.Pointer
BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE -
Constructor Summary
ConstructorsConstructorDescriptionVkPipelineDynamicStateCreateInfo(ByteBuffer container) Creates aVkPipelineDynamicStateCreateInfoinstance at the current position of the specifiedByteBuffercontainer. -
Method Summary
Modifier and TypeMethodDescriptioncalloc()Returns a newVkPipelineDynamicStateCreateInfoinstance allocated withmemCalloc.calloc(int capacity) Returns a newVkPipelineDynamicStateCreateInfo.Bufferinstance allocated withmemCalloc.calloc(int capacity, org.lwjgl.system.MemoryStack stack) Returns a newVkPipelineDynamicStateCreateInfo.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.calloc(org.lwjgl.system.MemoryStack stack) Returns a newVkPipelineDynamicStateCreateInfoinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.Deprecated.callocStack(int capacity) Deprecated.callocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.callocStack(org.lwjgl.system.MemoryStack stack) Deprecated.create()Returns a newVkPipelineDynamicStateCreateInfoinstance allocated withBufferUtils.create(int capacity) Returns a newVkPipelineDynamicStateCreateInfo.Bufferinstance allocated withBufferUtils.create(long address) Returns a newVkPipelineDynamicStateCreateInfoinstance for the specified memory address.create(long address, int capacity) Create aVkPipelineDynamicStateCreateInfo.Bufferinstance at the specified memory.static @Nullable VkPipelineDynamicStateCreateInfocreateSafe(long address) static @Nullable VkPipelineDynamicStateCreateInfo.BuffercreateSafe(long address, int capacity) intthe number of elements in thepDynamicStatesarray.intflags()reserved for future use.flags(int value) Sets the specified value to theflags()field.malloc()Returns a newVkPipelineDynamicStateCreateInfoinstance allocated withmemAlloc.malloc(int capacity) Returns a newVkPipelineDynamicStateCreateInfo.Bufferinstance allocated withmemAlloc.malloc(int capacity, org.lwjgl.system.MemoryStack stack) Returns a newVkPipelineDynamicStateCreateInfo.Bufferinstance allocated on the specifiedMemoryStack.malloc(org.lwjgl.system.MemoryStack stack) Returns a newVkPipelineDynamicStateCreateInfoinstance allocated on the specifiedMemoryStack.Deprecated.mallocStack(int capacity) Deprecated.mallocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.mallocStack(org.lwjgl.system.MemoryStack stack) Deprecated.static intndynamicStateCount(long struct) Unsafe version ofdynamicStateCount().static voidndynamicStateCount(long struct, int value) Sets the specified value to thedynamicStateCountfield of the specifiedstruct.static intnflags(long struct) Unsafe version offlags().static voidnflags(long struct, int value) Unsafe version offlags.static @Nullable IntBuffernpDynamicStates(long struct) Unsafe version ofpDynamicStates.static voidnpDynamicStates(long struct, @Nullable IntBuffer value) Unsafe version ofpDynamicStates.static longnpNext(long struct) Unsafe version ofpNext().static voidnpNext(long struct, long value) Unsafe version ofpNext.static intnsType(long struct) Unsafe version ofsType().static voidnsType(long struct, int value) Unsafe version ofsType.@Nullable IntBuffera pointer to an array ofVkDynamicStatevalues specifying which pieces of pipeline state will use the values from dynamic state commands rather than from pipeline state creation information.pDynamicStates(@Nullable IntBuffer value) Sets the address of the specifiedIntBufferto thepDynamicStates()field.longpNext()NULLor a pointer to a structure extending this structure.pNext(long value) Sets the specified value to thepNext()field.Initializes this struct with the specified values.Copies the specified struct data to this struct.intsizeof()intsType()aVkStructureTypevalue identifying this structure.sType(int value) Sets the specified value to thesType()field.Sets theSTRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFOvalue to thesType()field.static voidvalidate(long struct) Validates pointer members that should not beNULL.Methods inherited from class org.lwjgl.system.Struct
clear, free, isNull, validate, validateMethods inherited from class org.lwjgl.system.Pointer.Default
address, equals, hashCode, toStringMethods inherited from interface org.lwjgl.system.NativeResource
close, free
-
Field Details
-
SIZEOF
public static final int SIZEOFThe struct size in bytes. -
ALIGNOF
public static final int ALIGNOFThe struct alignment in bytes. -
STYPE
public static final int STYPEThe struct member offsets. -
PNEXT
public static final int PNEXTThe struct member offsets. -
FLAGS
public static final int FLAGSThe struct member offsets. -
DYNAMICSTATECOUNT
public static final int DYNAMICSTATECOUNTThe struct member offsets. -
PDYNAMICSTATES
public static final int PDYNAMICSTATESThe struct member offsets.
-
-
Constructor Details
-
VkPipelineDynamicStateCreateInfo
Creates aVkPipelineDynamicStateCreateInfoinstance 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()- Specified by:
sizeofin classorg.lwjgl.system.Struct<VkPipelineDynamicStateCreateInfo>
-
sType
public int sType()aVkStructureTypevalue identifying this structure. -
pNext
public long pNext()NULLor a pointer to a structure extending this structure. -
flags
public int flags()reserved for future use. -
dynamicStateCount
public int dynamicStateCount()the number of elements in thepDynamicStatesarray. -
pDynamicStates
a pointer to an array ofVkDynamicStatevalues specifying which pieces of pipeline state will use the values from dynamic state commands rather than from pipeline state creation information. -
sType
Sets the specified value to thesType()field. -
sType$Default
Sets theSTRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFOvalue to thesType()field. -
pNext
Sets the specified value to thepNext()field. -
flags
Sets the specified value to theflags()field. -
pDynamicStates
Sets the address of the specifiedIntBufferto thepDynamicStates()field. -
set
public VkPipelineDynamicStateCreateInfo set(int sType, long pNext, int flags, @Nullable IntBuffer pDynamicStates) Initializes this struct with the specified values. -
set
Copies the specified struct data to this struct.- Parameters:
src- the source struct- Returns:
- this struct
-
malloc
Returns a newVkPipelineDynamicStateCreateInfoinstance allocated withmemAlloc. The instance must be explicitly freed. -
calloc
Returns a newVkPipelineDynamicStateCreateInfoinstance allocated withmemCalloc. The instance must be explicitly freed. -
create
Returns a newVkPipelineDynamicStateCreateInfoinstance allocated withBufferUtils. -
create
Returns a newVkPipelineDynamicStateCreateInfoinstance for the specified memory address. -
createSafe
-
malloc
Returns a newVkPipelineDynamicStateCreateInfo.Bufferinstance allocated withmemAlloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
calloc
Returns a newVkPipelineDynamicStateCreateInfo.Bufferinstance allocated withmemCalloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
create
Returns a newVkPipelineDynamicStateCreateInfo.Bufferinstance allocated withBufferUtils.- Parameters:
capacity- the buffer capacity
-
create
Create aVkPipelineDynamicStateCreateInfo.Bufferinstance at the specified memory.- Parameters:
address- the memory addresscapacity- the buffer capacity
-
createSafe
public static @Nullable VkPipelineDynamicStateCreateInfo.Buffer createSafe(long address, int capacity) -
mallocStack
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(MemoryStack)instead. -
callocStack
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(MemoryStack)instead. -
mallocStack
@Deprecated public static VkPipelineDynamicStateCreateInfo mallocStack(org.lwjgl.system.MemoryStack stack) Deprecated.Deprecated for removal in 3.4.0. Usemalloc(MemoryStack)instead. -
callocStack
@Deprecated public static VkPipelineDynamicStateCreateInfo callocStack(org.lwjgl.system.MemoryStack stack) Deprecated.Deprecated for removal in 3.4.0. Usecalloc(MemoryStack)instead. -
mallocStack
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(int, MemoryStack)instead. -
callocStack
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(int, MemoryStack)instead. -
mallocStack
@Deprecated public static VkPipelineDynamicStateCreateInfo.Buffer mallocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.Deprecated for removal in 3.4.0. Usemalloc(int, MemoryStack)instead. -
callocStack
@Deprecated public static VkPipelineDynamicStateCreateInfo.Buffer callocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.Deprecated for removal in 3.4.0. Usecalloc(int, MemoryStack)instead. -
malloc
Returns a newVkPipelineDynamicStateCreateInfoinstance allocated on the specifiedMemoryStack.- Parameters:
stack- the stack from which to allocate
-
calloc
Returns a newVkPipelineDynamicStateCreateInfoinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
stack- the stack from which to allocate
-
malloc
public static VkPipelineDynamicStateCreateInfo.Buffer malloc(int capacity, org.lwjgl.system.MemoryStack stack) Returns a newVkPipelineDynamicStateCreateInfo.Bufferinstance allocated on the specifiedMemoryStack.- Parameters:
capacity- the buffer capacitystack- the stack from which to allocate
-
calloc
public static VkPipelineDynamicStateCreateInfo.Buffer calloc(int capacity, org.lwjgl.system.MemoryStack stack) Returns a newVkPipelineDynamicStateCreateInfo.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
capacity- the buffer capacitystack- the stack from which to allocate
-
nsType
public static int nsType(long struct) Unsafe version ofsType(). -
npNext
public static long npNext(long struct) Unsafe version ofpNext(). -
nflags
public static int nflags(long struct) Unsafe version offlags(). -
ndynamicStateCount
public static int ndynamicStateCount(long struct) Unsafe version ofdynamicStateCount(). -
npDynamicStates
Unsafe version ofpDynamicStates. -
nsType
public static void nsType(long struct, int value) Unsafe version ofsType. -
npNext
public static void npNext(long struct, long value) Unsafe version ofpNext. -
nflags
public static void nflags(long struct, int value) Unsafe version offlags. -
ndynamicStateCount
public static void ndynamicStateCount(long struct, int value) Sets the specified value to thedynamicStateCountfield of the specifiedstruct. -
npDynamicStates
Unsafe version ofpDynamicStates. -
validate
public static void validate(long struct) Validates pointer members that should not beNULL.- Parameters:
struct- the struct to validate
-