Enum
VkVideoComponentBitDepthFlagBitsKHR
Video format component bit depth
Possible values for the video format component bit depth are:
typedef enum VkVideoComponentBitDepthFlagBitsKHR {
VK_VIDEO_COMPONENT_BIT_DEPTH_INVALID_KHR = 0,
VK_VIDEO_COMPONENT_BIT_DEPTH_8_BIT_KHR = 0x00000001,
VK_VIDEO_COMPONENT_BIT_DEPTH_10_BIT_KHR = 0x00000004,
VK_VIDEO_COMPONENT_BIT_DEPTH_12_BIT_KHR = 0x00000010,
} VkVideoComponentBitDepthFlagBitsKHR;
pub struct VideoComponentBitDepthFlagBitsKHR(u32);
impl VideoComponentBitDepthFlagBitsKHR {
pub const INVALID: Self = 0;
pub const TYPE_8: Self = 0x00000001;
pub const TYPE_10: Self = 0x00000004;
pub const TYPE_12: Self = 0x00000010;
}
VK_VIDEO_COMPONENT_BIT_DEPTH_8_BIT_KHRspecifies a component bit depth of 8 bits.VK_VIDEO_COMPONENT_BIT_DEPTH_10_BIT_KHRspecifies a component bit depth of 10 bits.VK_VIDEO_COMPONENT_BIT_DEPTH_12_BIT_KHRspecifies a component bit depth of 12 bits.
Parent
VK_KHR_video_queueType
Enum