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

  • sType is a VkStructureType value identifying this structure.

  • pNext is NULL or a pointer to a structure extending this structure.

  • flags is a bitmask of VkResolveImageFlagBitsKHR.

  • resolveMode is a VkResolveModeFlagBits value defining how srcImage will be resolved into dstImage when resolving non-stencil values.

  • stencilResolveMode is a VkResolveModeFlagBits value defining how srcImage will be resolved into dstImage when resolving stencil values.

Description

Valid Usage
Valid Usage (Implicit)

See Also

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.

Copyright 2014-2026 The Khronos Group Inc.

SPDX-License-Identifier: CC-BY-4.0