Package org.lwjgl.vulkan
Class VkPipelineDynamicStateCreateInfo
- java.lang.Object
-
- org.lwjgl.system.Pointer.Default
-
- org.lwjgl.system.Struct
-
- org.lwjgl.vulkan.VkPipelineDynamicStateCreateInfo
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,org.lwjgl.system.NativeResource
,org.lwjgl.system.Pointer
public class VkPipelineDynamicStateCreateInfo extends org.lwjgl.system.Struct implements org.lwjgl.system.NativeResource
Structure specifying parameters of a newly created pipeline dynamic state.Valid Usage
- Each element of
pDynamicStates
must be unique
Valid Usage (Implicit)
sType
must beSTRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO
pNext
must beNULL
flags
must be 0- If
dynamicStateCount
is not 0,pDynamicStates
must be a valid pointer to an array ofdynamicStateCount
validVkDynamicState
values
See Also
Member documentation
sType
– the type of this structure.pNext
–NULL
or a pointer to an extension-specific structure.flags
– reserved for future use.dynamicStateCount
– the number of elements in thepDynamicStates
array.pDynamicStates
– an array ofVkDynamicState
values specifying which pieces of pipeline state will use the values from dynamic state commands rather than from pipeline state creation info.
Layout
struct VkPipelineDynamicStateCreateInfo { VkStructureType sType; void const * pNext; VkPipelineDynamicStateCreateFlags flags; uint32_t dynamicStateCount; VkDynamicState const * pDynamicStates; }
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
VkPipelineDynamicStateCreateInfo.Buffer
An array ofVkPipelineDynamicStateCreateInfo
structs.
-
Field Summary
Fields Modifier and Type Field Description static int
ALIGNOF
The struct alignment in bytes.static int
DYNAMICSTATECOUNT
FLAGS
PDYNAMICSTATES
PNEXTThe struct member offsets.static int
SIZEOF
The struct size in bytes.static int
STYPE
The struct member offsets.
-
Constructor Summary
Constructors Constructor Description VkPipelineDynamicStateCreateInfo(java.nio.ByteBuffer container)
Creates aVkPipelineDynamicStateCreateInfo
instance at the current position of the specifiedByteBuffer
container.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static VkPipelineDynamicStateCreateInfo
calloc()
Returns a newVkPipelineDynamicStateCreateInfo
instance allocated withmemCalloc
.static VkPipelineDynamicStateCreateInfo.Buffer
calloc(int capacity)
Returns a newVkPipelineDynamicStateCreateInfo.Buffer
instance allocated withmemCalloc
.static VkPipelineDynamicStateCreateInfo
callocStack()
Returns a newVkPipelineDynamicStateCreateInfo
instance allocated on the thread-localMemoryStack
and initializes all its bits to zero.static VkPipelineDynamicStateCreateInfo.Buffer
callocStack(int capacity)
Returns a newVkPipelineDynamicStateCreateInfo.Buffer
instance allocated on the thread-localMemoryStack
and initializes all its bits to zero.static VkPipelineDynamicStateCreateInfo.Buffer
callocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newVkPipelineDynamicStateCreateInfo.Buffer
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.static VkPipelineDynamicStateCreateInfo
callocStack(org.lwjgl.system.MemoryStack stack)
Returns a newVkPipelineDynamicStateCreateInfo
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.static VkPipelineDynamicStateCreateInfo
create()
Returns a newVkPipelineDynamicStateCreateInfo
instance allocated withBufferUtils
.static VkPipelineDynamicStateCreateInfo.Buffer
create(int capacity)
Returns a newVkPipelineDynamicStateCreateInfo.Buffer
instance allocated withBufferUtils
.static VkPipelineDynamicStateCreateInfo
create(long address)
Returns a newVkPipelineDynamicStateCreateInfo
instance for the specified memory address.static VkPipelineDynamicStateCreateInfo.Buffer
create(long address, int capacity)
Create aVkPipelineDynamicStateCreateInfo.Buffer
instance at the specified memory.static VkPipelineDynamicStateCreateInfo
createSafe(long address)
static VkPipelineDynamicStateCreateInfo.Buffer
createSafe(long address, int capacity)
int
dynamicStateCount()
Returns the value of thedynamicStateCount
field.int
flags()
Returns the value of theflags
field.VkPipelineDynamicStateCreateInfo
flags(int value)
Sets the specified value to theflags
field.static VkPipelineDynamicStateCreateInfo
malloc()
Returns a newVkPipelineDynamicStateCreateInfo
instance allocated withmemAlloc
.static VkPipelineDynamicStateCreateInfo.Buffer
malloc(int capacity)
Returns a newVkPipelineDynamicStateCreateInfo.Buffer
instance allocated withmemAlloc
.static VkPipelineDynamicStateCreateInfo
mallocStack()
Returns a newVkPipelineDynamicStateCreateInfo
instance allocated on the thread-localMemoryStack
.static VkPipelineDynamicStateCreateInfo.Buffer
mallocStack(int capacity)
Returns a newVkPipelineDynamicStateCreateInfo.Buffer
instance allocated on the thread-localMemoryStack
.static VkPipelineDynamicStateCreateInfo.Buffer
mallocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newVkPipelineDynamicStateCreateInfo.Buffer
instance allocated on the specifiedMemoryStack
.static VkPipelineDynamicStateCreateInfo
mallocStack(org.lwjgl.system.MemoryStack stack)
Returns a newVkPipelineDynamicStateCreateInfo
instance allocated on the specifiedMemoryStack
.static int
ndynamicStateCount(long struct)
Unsafe version ofdynamicStateCount()
.static void
ndynamicStateCount(long struct, int value)
Sets the specified value to thedynamicStateCount
field of the specifiedstruct
.static int
nflags(long struct)
Unsafe version offlags()
.static void
nflags(long struct, int value)
Unsafe version offlags
.static java.nio.IntBuffer
npDynamicStates(long struct)
Unsafe version ofpDynamicStates
.static void
npDynamicStates(long struct, java.nio.IntBuffer value)
Unsafe version ofpDynamicStates
.static long
npNext(long struct)
Unsafe version ofpNext()
.static void
npNext(long struct, long value)
Unsafe version ofpNext
.static int
nsType(long struct)
Unsafe version ofsType()
.static void
nsType(long struct, int value)
Unsafe version ofsType
.java.nio.IntBuffer
pDynamicStates()
Returns aIntBuffer
view of the data pointed to by thepDynamicStates
field.VkPipelineDynamicStateCreateInfo
pDynamicStates(java.nio.IntBuffer value)
Sets the address of the specifiedIntBuffer
to thepDynamicStates
field.long
pNext()
Returns the value of thepNext
field.VkPipelineDynamicStateCreateInfo
pNext(long value)
Sets the specified value to thepNext
field.VkPipelineDynamicStateCreateInfo
set(int sType, long pNext, int flags, java.nio.IntBuffer pDynamicStates)
Initializes this struct with the specified values.VkPipelineDynamicStateCreateInfo
set(VkPipelineDynamicStateCreateInfo src)
Copies the specified struct data to this struct.int
sizeof()
int
sType()
Returns the value of thesType
field.VkPipelineDynamicStateCreateInfo
sType(int value)
Sets the specified value to thesType
field.static void
validate(long struct)
Validates pointer members that should not beNULL
.static void
validate(long array, int count)
Callsvalidate(long)
for each struct contained in the specified struct array.
-
-
-
Constructor Detail
-
VkPipelineDynamicStateCreateInfo
public VkPipelineDynamicStateCreateInfo(java.nio.ByteBuffer container)
Creates aVkPipelineDynamicStateCreateInfo
instance at the current position of the specifiedByteBuffer
container. 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 Detail
-
sizeof
public int sizeof()
- Specified by:
sizeof
in classorg.lwjgl.system.Struct
-
sType
public int sType()
Returns the value of thesType
field.
-
pNext
public long pNext()
Returns the value of thepNext
field.
-
flags
public int flags()
Returns the value of theflags
field.
-
dynamicStateCount
public int dynamicStateCount()
Returns the value of thedynamicStateCount
field.
-
pDynamicStates
@Nullable public java.nio.IntBuffer pDynamicStates()
Returns aIntBuffer
view of the data pointed to by thepDynamicStates
field.
-
sType
public VkPipelineDynamicStateCreateInfo sType(int value)
Sets the specified value to thesType
field.
-
pNext
public VkPipelineDynamicStateCreateInfo pNext(long value)
Sets the specified value to thepNext
field.
-
flags
public VkPipelineDynamicStateCreateInfo flags(int value)
Sets the specified value to theflags
field.
-
pDynamicStates
public VkPipelineDynamicStateCreateInfo pDynamicStates(@Nullable java.nio.IntBuffer value)
Sets the address of the specifiedIntBuffer
to thepDynamicStates
field.
-
set
public VkPipelineDynamicStateCreateInfo set(int sType, long pNext, int flags, @Nullable java.nio.IntBuffer pDynamicStates)
Initializes this struct with the specified values.
-
set
public VkPipelineDynamicStateCreateInfo set(VkPipelineDynamicStateCreateInfo src)
Copies the specified struct data to this struct.- Parameters:
src
- the source struct- Returns:
- this struct
-
malloc
public static VkPipelineDynamicStateCreateInfo malloc()
Returns a newVkPipelineDynamicStateCreateInfo
instance allocated withmemAlloc
. The instance must be explicitly freed.
-
calloc
public static VkPipelineDynamicStateCreateInfo calloc()
Returns a newVkPipelineDynamicStateCreateInfo
instance allocated withmemCalloc
. The instance must be explicitly freed.
-
create
public static VkPipelineDynamicStateCreateInfo create()
Returns a newVkPipelineDynamicStateCreateInfo
instance allocated withBufferUtils
.
-
create
public static VkPipelineDynamicStateCreateInfo create(long address)
Returns a newVkPipelineDynamicStateCreateInfo
instance for the specified memory address.
-
createSafe
@Nullable public static VkPipelineDynamicStateCreateInfo createSafe(long address)
-
malloc
public static VkPipelineDynamicStateCreateInfo.Buffer malloc(int capacity)
Returns a newVkPipelineDynamicStateCreateInfo.Buffer
instance allocated withmemAlloc
. The instance must be explicitly freed.- Parameters:
capacity
- the buffer capacity
-
calloc
public static VkPipelineDynamicStateCreateInfo.Buffer calloc(int capacity)
Returns a newVkPipelineDynamicStateCreateInfo.Buffer
instance allocated withmemCalloc
. The instance must be explicitly freed.- Parameters:
capacity
- the buffer capacity
-
create
public static VkPipelineDynamicStateCreateInfo.Buffer create(int capacity)
Returns a newVkPipelineDynamicStateCreateInfo.Buffer
instance allocated withBufferUtils
.- Parameters:
capacity
- the buffer capacity
-
create
public static VkPipelineDynamicStateCreateInfo.Buffer create(long address, int capacity)
Create aVkPipelineDynamicStateCreateInfo.Buffer
instance at the specified memory.- Parameters:
address
- the memory addresscapacity
- the buffer capacity
-
createSafe
@Nullable public static VkPipelineDynamicStateCreateInfo.Buffer createSafe(long address, int capacity)
-
mallocStack
public static VkPipelineDynamicStateCreateInfo mallocStack()
Returns a newVkPipelineDynamicStateCreateInfo
instance allocated on the thread-localMemoryStack
.
-
callocStack
public static VkPipelineDynamicStateCreateInfo callocStack()
Returns a newVkPipelineDynamicStateCreateInfo
instance allocated on the thread-localMemoryStack
and initializes all its bits to zero.
-
mallocStack
public static VkPipelineDynamicStateCreateInfo mallocStack(org.lwjgl.system.MemoryStack stack)
Returns a newVkPipelineDynamicStateCreateInfo
instance allocated on the specifiedMemoryStack
.- Parameters:
stack
- the stack from which to allocate
-
callocStack
public static VkPipelineDynamicStateCreateInfo callocStack(org.lwjgl.system.MemoryStack stack)
Returns a newVkPipelineDynamicStateCreateInfo
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.- Parameters:
stack
- the stack from which to allocate
-
mallocStack
public static VkPipelineDynamicStateCreateInfo.Buffer mallocStack(int capacity)
Returns a newVkPipelineDynamicStateCreateInfo.Buffer
instance allocated on the thread-localMemoryStack
.- Parameters:
capacity
- the buffer capacity
-
callocStack
public static VkPipelineDynamicStateCreateInfo.Buffer callocStack(int capacity)
Returns a newVkPipelineDynamicStateCreateInfo.Buffer
instance allocated on the thread-localMemoryStack
and initializes all its bits to zero.- Parameters:
capacity
- the buffer capacity
-
mallocStack
public static VkPipelineDynamicStateCreateInfo.Buffer mallocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newVkPipelineDynamicStateCreateInfo.Buffer
instance allocated on the specifiedMemoryStack
.- Parameters:
stack
- the stack from which to allocatecapacity
- the buffer capacity
-
callocStack
public static VkPipelineDynamicStateCreateInfo.Buffer callocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newVkPipelineDynamicStateCreateInfo.Buffer
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.- Parameters:
stack
- the stack from which to allocatecapacity
- the buffer capacity
-
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
@Nullable public static java.nio.IntBuffer npDynamicStates(long struct)
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 thedynamicStateCount
field of the specifiedstruct
.
-
npDynamicStates
public static void npDynamicStates(long struct, @Nullable java.nio.IntBuffer value)
Unsafe version ofpDynamicStates
.
-
validate
public static void validate(long struct)
Validates pointer members that should not beNULL
.- Parameters:
struct
- the struct to validate
-
validate
public static void validate(long array, int count)
Callsvalidate(long)
for each struct contained in the specified struct array.- Parameters:
array
- the struct array to validatecount
- the number of structs inarray
-
-