C Specification
The VkPhysicalDeviceExternalFormatResolvePropertiesANDROID structure
is defined as:
// Provided by VK_ANDROID_external_format_resolve
typedef struct VkPhysicalDeviceExternalFormatResolvePropertiesANDROID {
    VkStructureType     sType;
    void*               pNext;
    VkBool32            nullColorAttachmentWithExternalFormatResolve;
    VkChromaLocation    externalFormatResolveChromaOffsetX;
    VkChromaLocation    externalFormatResolveChromaOffsetY;
} VkPhysicalDeviceExternalFormatResolvePropertiesANDROID;Members
- 
sTypeis a VkStructureType value identifying this structure.
- 
pNextisNULLor a pointer to a structure extending this structure.
- 
nullColorAttachmentWithExternalFormatResolveindicates that there must be no color attachment image when performing external format resolves if it isVK_TRUE.
- 
externalFormatResolveChromaOffsetXindicates the VkChromaLocation that an implementation uses in the X axis for accesses to an external format image as a resolve attachment. This must be consistent between external format resolves and load operations from external format resolve attachments to color attachments whennullColorAttachmentWithExternalFormatResolveisVK_TRUE.
- 
externalFormatResolveChromaOffsetYindicates the VkChromaLocation that an implementation uses in the Y axis for accesses to an external format image as a resolve attachment. This must be consistent between external format resolves and load operations from external format resolve attachments to color attachments whennullColorAttachmentWithExternalFormatResolveisVK_TRUE.
Description
If the VkPhysicalDeviceExternalFormatResolvePropertiesANDROID 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.