Structures
VkPhysicalDeviceMemoryProperties2
Structure specifying physical device memory properties
The VkPhysicalDeviceMemoryProperties2
structure is defined as:
typedef struct VkPhysicalDeviceMemoryProperties2 {
VkStructureType sType;
void* pNext;
VkPhysicalDeviceMemoryProperties memoryProperties;
} VkPhysicalDeviceMemoryProperties2;
or the equivalent
typedef VkPhysicalDeviceMemoryProperties2 VkPhysicalDeviceMemoryProperties2KHR;
sType
is a VkStructureType value identifying this structure.pNext
isNULL
or a pointer to a structure extending this structure.memoryProperties
is a VkPhysicalDeviceMemoryProperties structure which is populated with the same values as in vkGetPhysicalDeviceMemoryProperties.
Valid Usage (Implicit)
VUID-VkPhysicalDeviceMemoryProperties2-sType-sType
sType
must be VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_PROPERTIES_2
VUID-VkPhysicalDeviceMemoryProperties2-pNext-pNext
pNext
must be NULL
or a pointer to a valid instance of VkPhysicalDeviceMemoryBudgetPropertiesEXT
VUID-VkPhysicalDeviceMemoryProperties2-sType-unique
The sType
value of each struct in the pNext
chain must be unique