Enum
VkPerformanceOverrideTypeINTEL
Performance override type
Possible values of VkPerformanceOverrideInfoINTEL::type,
specifying performance override types, are:
typedef enum VkPerformanceOverrideTypeINTEL {
VK_PERFORMANCE_OVERRIDE_TYPE_NULL_HARDWARE_INTEL = 0,
VK_PERFORMANCE_OVERRIDE_TYPE_FLUSH_GPU_CACHES_INTEL = 1,
} VkPerformanceOverrideTypeINTEL;
pub struct PerformanceOverrideTypeINTEL(u32);
impl PerformanceOverrideTypeINTEL {
pub const NULL_HARDWARE: Self = 0;
pub const FLUSH_GPU_CACHES: Self = 1;
}
VK_PERFORMANCE_OVERRIDE_TYPE_NULL_HARDWARE_INTELturns all rendering operations into noop.VK_PERFORMANCE_OVERRIDE_TYPE_FLUSH_GPU_CACHES_INTELstalls the stream of commands until all previously emitted commands have completed and all caches been flushed and invalidated.
Type
Enum