Function Prototype
vkGetPhysicalDeviceMemoryProperties
Reports memory information for the specified physical device
To query memory properties, call:
void vkGetPhysicalDeviceMemoryProperties(
VkPhysicalDevice physicalDevice,
VkPhysicalDeviceMemoryProperties* pMemoryProperties);
pub fn get_physical_device_memory_properties(
physical_device: vk::PhysicalDevice,
p_memory_properties: *mut vk::PhysicalDeviceMemoryProperties,
);
physicalDeviceis the handle to the device to query.pMemoryPropertiesis a pointer to a VkPhysicalDeviceMemoryProperties structure in which the properties are returned.
Valid Usage (Implicit)
VUID-vkGetPhysicalDeviceMemoryProperties-physicalDevice-parameter
physicalDevice must be a valid VkPhysicalDevice handle
VUID-vkGetPhysicalDeviceMemoryProperties-pMemoryProperties-parameter
pMemoryProperties must be a valid pointer to a VkPhysicalDeviceMemoryProperties structure
Parent
VK_VERSION_1_0Type
Function Prototype