Function Prototype

vkGetPhysicalDeviceProperties

Returns properties of a physical device

To query general properties of physical devices once enumerated, call:

void vkGetPhysicalDeviceProperties(
    VkPhysicalDevice physicalDevice,
    VkPhysicalDeviceProperties* pProperties);
  • physicalDevice is the handle to the physical device whose properties will be queried.
  • pProperties is a pointer to a VkPhysicalDeviceProperties structure in which properties are returned.

Valid Usage (Implicit)