Enum
VkPrivateDataSlotCreateFlagBits
Bitmask specifying additional parameters of a private data slot
Bits which can be set in VkPrivateDataSlotCreateInfo::flags,
specifying additional parameters of a private data slot, are:
typedef enum VkPrivateDataSlotCreateFlagBits {
// Provided by extensions
VK_PRIVATE_DATA_SLOT_CREATE_BASE_OBJECT_HANDLE_BIT_NV = 0x00000001,
} VkPrivateDataSlotCreateFlagBits;
pub struct PrivateDataSlotCreateFlagBits(u32);
impl PrivateDataSlotCreateFlagBits {
pub const BASE_OBJECT_HANDLE_NV: Self = 0x00000001;
}
#define VkPrivateDataSlotCreateFlagBitsEXT VkPrivateDataSlotCreateFlagBits
const PrivateDataSlotCreateFlagBitsEXT: _ = vk::PrivateDataSlotCreateFlagBits;
VK_PRIVATE_DATA_SLOT_CREATE_BASE_OBJECT_HANDLE_BIT_NVspecifies that callingvkGetPrivateDatawith this slot will return the implementation’s base handle for the object rather than any previously set private data.vkSetPrivateDatamust not be called with a slot created with this flag.
Parent
VK_VERSION_1_3Type
Enum