VkPhysicalDeviceProperties2(3)

Name

VkPhysicalDeviceProperties2 - Structure specifying physical device properties

C Specification

The VkPhysicalDeviceProperties2 structure is defined as:

// Provided by VK_VERSION_1_1
typedef struct VkPhysicalDeviceProperties2 {
    VkStructureType               sType;
    void*                         pNext;
    VkPhysicalDeviceProperties    properties;
} VkPhysicalDeviceProperties2;
// Provided by VK_KHR_get_physical_device_properties2
// Equivalent to VkPhysicalDeviceProperties2
typedef VkPhysicalDeviceProperties2 VkPhysicalDeviceProperties2KHR;

Members

Description

The pNext chain of this structure is used to extend the structure with properties defined by extensions.

Valid Usage (Implicit)

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.