Enum
VkDataGraphTOSAQualityFlagBitsARM
Bits specifying quality properties for a TOSA profile or extension
Bits which can be set in
VkDataGraphTOSANameQualityARM::qualityLevel, describing the
quality of a TOSA profile or extension, are:
typedef enum VkDataGraphTOSAQualityFlagBitsARM {
VK_DATA_GRAPH_TOSA_QUALITY_ACCELERATED_ARM = 0x00000001,
VK_DATA_GRAPH_TOSA_QUALITY_CONFORMANT_ARM = 0x00000002,
VK_DATA_GRAPH_TOSA_QUALITY_EXPERIMENTAL_ARM = 0x00000004,
VK_DATA_GRAPH_TOSA_QUALITY_DEPRECATED_ARM = 0x00000008,
} VkDataGraphTOSAQualityFlagBitsARM;
pub struct DataGraphTOSAQualityFlagBitsARM(u32);
impl DataGraphTOSAQualityFlagBitsARM {
pub const ACCELERATED: Self = 0x00000001;
pub const CONFORMANT: Self = 0x00000002;
pub const EXPERIMENTAL: Self = 0x00000004;
pub const DEPRECATED: Self = 0x00000008;
}
VK_DATA_GRAPH_TOSA_QUALITY_ACCELERATED_ARMspecifies that the implementation of the TOSA profile or extension is accelerated.VK_DATA_GRAPH_TOSA_QUALITY_CONFORMANT_ARMspecifies that the implementation of the TOSA profile or extension is conformant.VK_DATA_GRAPH_TOSA_QUALITY_EXPERIMENTAL_ARMspecifies that the TOSA profile or extension is experimental.VK_DATA_GRAPH_TOSA_QUALITY_DEPRECATED_ARMspecifies that the TOSA profile or extension is deprecated.
Type
Enum