Enum
VkCommandPoolResetFlagBits
Bitmask controlling behavior of a command pool reset
Bits which can be set in vkResetCommandPool::flags, controlling
the reset operation, are:
typedef enum VkCommandPoolResetFlagBits {
VK_COMMAND_POOL_RESET_RELEASE_RESOURCES_BIT = 0x00000001,
// Provided by extensions
VK_COMMAND_POOL_RESET_RESERVED_1_BIT_COREAVI = 0x00000002,
} VkCommandPoolResetFlagBits;
pub struct CommandPoolResetFlagBits(u32);
impl CommandPoolResetFlagBits {
pub const RELEASE_RESOURCES: Self = 0x00000001;
pub const RESERVED_1_COREAVI: Self = 0x00000002;
}
VK_COMMAND_POOL_RESET_RELEASE_RESOURCES_BITspecifies that resetting a command pool recycles all of the resources from the command pool back to the system.
Parent
VK_VERSION_1_0Type
Enum