Class VkPushDescriptorSetWithTemplateInfoKHR

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkPushDescriptorSetWithTemplateInfoKHR>
org.lwjgl.vulkan.VkPushDescriptorSetWithTemplateInfoKHR
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class VkPushDescriptorSetWithTemplateInfoKHR extends org.lwjgl.system.Struct<VkPushDescriptorSetWithTemplateInfoKHR> implements org.lwjgl.system.NativeResource
Structure specifying a descriptor set push operation using a descriptor update template.
Valid Usage
Valid Usage (Implicit)
  • sType must be STRUCTURE_TYPE_PUSH_DESCRIPTOR_SET_WITH_TEMPLATE_INFO_KHR
  • pNext must be NULL or a pointer to a valid instance of VkPipelineLayoutCreateInfo
  • The sType value of each struct in the pNext chain must be unique
  • descriptorUpdateTemplate must be a valid VkDescriptorUpdateTemplate handle
  • If layout is not NULL_HANDLE, layout must be a valid VkPipelineLayout handle
  • pData must be a pointer value
  • Both of descriptorUpdateTemplate, and layout that are valid handles of non-ignored parameters must have been created, allocated, or retrieved from the same VkDevice
See Also

CmdPushDescriptorSetWithTemplate2KHR

Layout


 struct VkPushDescriptorSetWithTemplateInfoKHR {
     VkStructureType sType();
     void const * pNext();
     VkDescriptorUpdateTemplate descriptorUpdateTemplate();
     VkPipelineLayout layout();
     uint32_t set();
     void const * pData();
 }