Enum
VkIndirectStateFlagBitsNV
Bitmask specifying state that can be altered on the device
A subset of the graphics pipeline state can be altered using indirect state flags:
typedef enum VkIndirectStateFlagBitsNV {
VK_INDIRECT_STATE_FLAG_FRONTFACE_BIT_NV = 0x00000001,
} VkIndirectStateFlagBitsNV;
pub struct IndirectStateFlagBitsNV(u32);
impl IndirectStateFlagBitsNV {
pub const FLAG_FRONTFACE: Self = 0x00000001;
}
VK_INDIRECT_STATE_FLAG_FRONTFACE_BIT_NVallows to toggle the VkFrontFace rasterization state for subsequent drawing commands.
Type
Enum