Enum
VkQueryPoolSamplingModeINTEL
Enum specifying how performance queries should be captured
Possible values of
VkQueryPoolPerformanceQueryCreateInfoINTEL::performanceCountersSampling
are:
typedef enum VkQueryPoolSamplingModeINTEL {
VK_QUERY_POOL_SAMPLING_MODE_MANUAL_INTEL = 0,
} VkQueryPoolSamplingModeINTEL;
pub struct QueryPoolSamplingModeINTEL(u32);
impl QueryPoolSamplingModeINTEL {
pub const MANUAL: Self = 0;
}
VK_QUERY_POOL_SAMPLING_MODE_MANUAL_INTELis the default mode in which the application calls vkCmdBeginQuery and vkCmdEndQuery to record performance data.
Type
Enum