VkFormatProperties4KHR(3)

Name

VkFormatProperties4KHR - Structure specifying additional image format properties

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

Description

To query supported format extended features which are properties of the physical device, add a VkFormatProperties4KHR structure to the pNext chain of VkFormatProperties2.

VkFormatProperties4KHR supports additional format feature bits beyond those in VkFormatProperties3.

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.