Structures
VkPhysicalDeviceShaderTileImagePropertiesEXT
Structure containing information about tile image support for a physical device
The VkPhysicalDeviceShaderTileImagePropertiesEXT structure is defined
as:
typedef struct VkPhysicalDeviceShaderTileImagePropertiesEXT {
VkStructureType sType;
void* pNext;
VkBool32 shaderTileImageCoherentReadAccelerated;
VkBool32 shaderTileImageReadSampleFromPixelRateInvocation;
VkBool32 shaderTileImageReadFromHelperInvocation;
} VkPhysicalDeviceShaderTileImagePropertiesEXT;
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.shaderTileImageCoherentReadAcceleratedis a boolean that will beVK_TRUEif coherent reads of tile image data is accelerated.shaderTileImageReadSampleFromPixelRateInvocationis a boolean that will beVK_TRUEif reading from samples from a pixel rate fragment invocation is supported when VkPipelineMultisampleStateCreateInfo::rasterizationSamples> 1.shaderTileImageReadFromHelperInvocationis a boolean that will beVK_TRUEif reads of tile image data from helper fragment invocations result in valid values.
If the VkPhysicalDeviceShaderTileImagePropertiesEXT structure is included in the pNext chain of the
VkPhysicalDeviceProperties2 structure passed to
vkGetPhysicalDeviceProperties2, it is filled in with each
corresponding implementation-dependent property.
These are properties of the tile image information of a physical device.
Valid Usage (Implicit)
VUID-VkPhysicalDeviceShaderTileImagePropertiesEXT-sType-sType
sType must be VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_TILE_IMAGE_PROPERTIES_EXT