C Specification
Bits which can be set in VkResolveImageModeInfoKHR::flags,
describing additional properties of a resolve operation, are:
// Provided by VK_KHR_maintenance10
typedef enum VkResolveImageFlagBitsKHR {
// Provided by VK_KHR_maintenance10 with VK_VERSION_1_3 or VK_KHR_copy_commands2
VK_RESOLVE_IMAGE_SKIP_TRANSFER_FUNCTION_BIT_KHR = 0x00000001,
// Provided by VK_KHR_maintenance10 with VK_VERSION_1_3 or VK_KHR_copy_commands2
VK_RESOLVE_IMAGE_ENABLE_TRANSFER_FUNCTION_BIT_KHR = 0x00000002,
} VkResolveImageFlagBitsKHR;
Description
-
VK_RESOLVE_IMAGE_SKIP_TRANSFER_FUNCTION_BIT_KHRspecifies that resolve operations happening to an sRGB encoded image must not convert samples from nonlinear to linear before averaging. -
VK_RESOLVE_IMAGE_ENABLE_TRANSFER_FUNCTION_BIT_KHRspecifies that resolve operations happening to an sRGB encoded image must convert samples from nonlinear to linear before averaging.
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.