Enum
VkDescriptorUpdateTemplateType
Indicates the valid usage of the descriptor update template
The descriptor update template type is determined by the
VkDescriptorUpdateTemplateCreateInfo::templateType property,
which takes the following values:
typedef enum VkDescriptorUpdateTemplateType {
VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_DESCRIPTOR_SET = 0,
} VkDescriptorUpdateTemplateType;
pub struct DescriptorUpdateTemplateType(u32);
impl DescriptorUpdateTemplateType {
pub const DESCRIPTOR_SET: Self = 0;
}
#define VkDescriptorUpdateTemplateTypeKHR VkDescriptorUpdateTemplateType
const DescriptorUpdateTemplateTypeKHR: _ = vk::DescriptorUpdateTemplateType;
VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_DESCRIPTOR_SETspecifies that the descriptor update template will be used for descriptor set updates only.VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_PUSH_DESCRIPTORSspecifies that the descriptor update template will be used for push descriptor updates only.
Parent
VK_VERSION_1_1Type
Enum