VkFormatProperties4KHR(3)
C Specification
The VkFormatProperties4KHR structure is defined as:
// Provided by VK_KHR_extended_flags
typedef struct VkFormatProperties4KHR {
VkStructureType sType;
void* pNext;
VkFormatFeatureFlags4KHR linearTilingFeatures;
VkFormatFeatureFlags4KHR optimalTilingFeatures;
VkFormatFeatureFlags4KHR bufferFeatures;
} VkFormatProperties4KHR;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
linearTilingFeaturesis a bitmask of VkFormatFeatureFlagBits4KHR specifying features supported by images created with atilingparameter of VK_IMAGE_TILING_LINEAR. -
optimalTilingFeaturesis a bitmask of VkFormatFeatureFlagBits4KHR specifying features supported by images created with atilingparameter of VK_IMAGE_TILING_OPTIMAL. -
bufferFeaturesis a bitmask of VkFormatFeatureFlagBits4KHR specifying features supported by buffers.
Description
To query supported format extended features which are properties of the
physical device, add a VkFormatProperties4KHR structure to the
pNext chain of VkFormatProperties2.
|
|
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.