C Specification
The VkResolveImageModeInfoKHR structure is defined as:
// Provided by VK_KHR_maintenance10
typedef struct VkResolveImageModeInfoKHR {
VkStructureType sType;
const void* pNext;
VkResolveImageFlagsKHR flags;
VkResolveModeFlagBits resolveMode;
VkResolveModeFlagBits stencilResolveMode;
} VkResolveImageModeInfoKHR;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
flagsis a bitmask of VkResolveImageFlagBitsKHR. -
resolveModeis a VkResolveModeFlagBits value defining howsrcImagewill be resolved intodstImagewhen resolving non-stencil values. -
stencilResolveModeis a VkResolveModeFlagBits value defining howsrcImagewill be resolved intodstImagewhen resolving stencil values.
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.