C Specification
The VkPhysicalDeviceTileShadingPropertiesQCOM structure is defined as:
// Provided by VK_QCOM_tile_shading
typedef struct VkPhysicalDeviceTileShadingPropertiesQCOM {
    VkStructureType    sType;
    void*              pNext;
    uint32_t           maxApronSize;
    VkBool32           preferNonCoherent;
    VkExtent2D         tileGranularity;
    VkExtent2D         maxTileShadingRate;
} VkPhysicalDeviceTileShadingPropertiesQCOM;Members
- 
sTypeis a VkStructureType value identifying this structure
- 
pNextisNULLor a pointer to a structure extending this structure.
- 
maxApronSizeis the maximum value supported which can be specified for VkRenderPassTileShadingCreateInfoQCOM::apronSizeorwidthandheight.
- 
preferNonCoherentindicates that the implementation prefers tile attachments declared in shaders with theNonCoherentTileAttachmentReadQCOMdecoration. Use of the decoration may offer performance or power advantages.
- 
tileGranularityprovides a guarantee on the granularity of each tile. Each tile will have dimensions that are a multiple of this granularity in width and height.
- 
maxTileShadingRateis the maximum value ofTileShadingRateQCOMand must be a power of 2.
Description
If the VkPhysicalDeviceTileShadingPropertiesQCOM structure is included in the pNext chain of the
VkPhysicalDeviceProperties2 structure passed to
vkGetPhysicalDeviceProperties2, it is filled in with each
corresponding implementation-dependent property.
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.