Class VkPipelineDynamicStateCreateInfo

  • All Implemented Interfaces:
    java.lang.AutoCloseable, NativeResource, Pointer


    public class VkPipelineDynamicStateCreateInfo
    extends Struct
    Khronos Reference Page
    Vulkan Specification

    Contains information about dynamic state as part of graphics pipeline creation.

    Valid Usage

    Member documentation

    • sType – the type of this structure. Must be: STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO
    • pNext – reserved for use by extensions
    • flags – reserved for future use
    • dynamicStateCount – the number of elements in the pDynamicStates array
    • pDynamicStates – an array of VkDynamicState enums which indicate which pieces of pipeline state will use the values from dynamic state commands rather than from the pipeline state creation info

    Layout

    struct VkPipelineDynamicStateCreateInfo {
        VkStructureType sType;
        const void * pNext;
        VkPipelineDynamicStateCreateFlags flags;
        uint32_t dynamicStateCount;
        const VkDynamicState * pDynamicStates;
    }