C Specification
Applications can enable sRGB to linear conversion for the R, G, and B
components of a Y′CBCR image during format
conversion by including
VkSamplerYcbcrConversionYcbcrDegammaCreateInfoQCOM structure in the
pNext chain of VkSamplerYcbcrConversionCreateInfo.
The VkSamplerYcbcrConversionYcbcrDegammaCreateInfoQCOM structure is
defined as:
// Provided by VK_QCOM_ycbcr_degamma
typedef struct VkSamplerYcbcrConversionYcbcrDegammaCreateInfoQCOM {
    VkStructureType    sType;
    void*              pNext;
    VkBool32           enableYDegamma;
    VkBool32           enableCbCrDegamma;
} VkSamplerYcbcrConversionYcbcrDegammaCreateInfoQCOM;Members
- 
sTypeis a VkStructureType value identifying this structure.
- 
pNextisNULLor a pointer to a structure extending this structure.
- 
enableYDegammaindicates sRGB to linear conversion is enabled for the G component.
- 
enableCbCrDegammaindicates sRGB to linear conversion is enabled for the R and B components.
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.