Enum
VkPerformanceParameterTypeINTEL
Parameters that can be queried
Possible values of vkGetPerformanceParameterINTEL::parameter,
specifying a performance query feature, are:
typedef enum VkPerformanceParameterTypeINTEL {
VK_PERFORMANCE_PARAMETER_TYPE_HW_COUNTERS_SUPPORTED_INTEL = 0,
VK_PERFORMANCE_PARAMETER_TYPE_STREAM_MARKER_VALID_BITS_INTEL = 1,
} VkPerformanceParameterTypeINTEL;
pub struct PerformanceParameterTypeINTEL(u32);
impl PerformanceParameterTypeINTEL {
pub const HW_COUNTERS_SUPPORTED: Self = 0;
pub const STREAM_MARKER_VALIDS: Self = 1;
}
VK_PERFORMANCE_PARAMETER_TYPE_HW_COUNTERS_SUPPORTED_INTELhas a boolean result which tells whether hardware counters can be captured.VK_PERFORMANCE_PARAMETER_TYPE_STREAM_MARKER_VALID_BITS_INTELhas a 32 bits integer result which tells how many bits can be written into theVkPerformanceValueINTELvalue.
Type
Enum