C Specification
The VkPhysicalDevicePerformanceQueryPropertiesKHR structure is defined
as:
// Provided by VK_KHR_performance_query
typedef struct VkPhysicalDevicePerformanceQueryPropertiesKHR {
VkStructureType sType;
void* pNext;
VkBool32 allowCommandBufferQueryCopies;
} VkPhysicalDevicePerformanceQueryPropertiesKHR;
Members
The members of the VkPhysicalDevicePerformanceQueryPropertiesKHR
structure describe the following implementation-dependent properties:
Description
-
sTypeis the type of this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
allowCommandBufferQueryCopiesisVK_TRUEif the performance query pools are allowed to be used with vkCmdCopyQueryPoolResults.
If the VkPhysicalDevicePerformanceQueryPropertiesKHR structure is
included in the pNext chain of VkPhysicalDeviceProperties2, it
is filled with the implementation-dependent properties.
See Also
VkBool32, VkStructureType
Document Notes
For more information, see the Vulkan Specification
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.