C Specification
A video profile supporting video encode R′G′B′ conversion is specified
by an pVideoProfile->videoCodecOperation specifying an encode
operation and including a VkVideoEncodeProfileRgbConversionInfoVALVE
structure in the pNext chain of the VkVideoProfileInfoKHR
structure and enabling performEncodeRgbConversion.
The VkVideoEncodeProfileRgbConversionInfoVALVE structure is defined
as:
// Provided by VK_VALVE_video_encode_rgb_conversion
typedef struct VkVideoEncodeProfileRgbConversionInfoVALVE {
VkStructureType sType;
const void* pNext;
VkBool32 performEncodeRgbConversion;
} VkVideoEncodeProfileRgbConversionInfoVALVE;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
performEncodeRgbConversionis a boolean value indicating whether video encode R′G′B′ conversion will be used for the encode operation.
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.