Function Prototype
vkGetPhysicalDeviceFormatProperties
Lists physical device's format capabilities
To query supported format features which are properties of the physical device, call:
void vkGetPhysicalDeviceFormatProperties(
VkPhysicalDevice physicalDevice,
VkFormat format,
VkFormatProperties* pFormatProperties);
physicalDeviceis the physical device from which to query the format properties.formatis the format whose properties are queried.pFormatPropertiesis a pointer to a VkFormatProperties structure in which physical device properties forformatare returned.
Valid Usage (Implicit)
VUID-vkGetPhysicalDeviceFormatProperties-physicalDevice-parameter
physicalDevice must be a valid VkPhysicalDevice handle
VUID-vkGetPhysicalDeviceFormatProperties-format-parameter
format must be a valid VkFormat value
VUID-vkGetPhysicalDeviceFormatProperties-pFormatProperties-parameter
pFormatProperties must be a valid pointer to a VkFormatProperties structure