Structures
VkVideoEndCodingInfoKHR
Structure specifying video coding scope end information
The VkVideoEndCodingInfoKHR structure is defined as:
typedef struct VkVideoEndCodingInfoKHR {
VkStructureType sType;
const void* pNext;
VkVideoEndCodingFlagsKHR flags;
} VkVideoEndCodingInfoKHR;
pub struct VideoEndCodingInfoKHR {
s_type: vk::StructureType,
p_next: *const c_void,
flags: vk::VideoEndCodingFlagsKHR,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.flagsis reserved for future use.
Valid Usage (Implicit)
VUID-VkVideoEndCodingInfoKHR-sType-sType
sType must be VK_STRUCTURE_TYPE_VIDEO_END_CODING_INFO_KHR
VUID-VkVideoEndCodingInfoKHR-pNext-pNext
pNext must be NULL
VUID-VkVideoEndCodingInfoKHR-flags-zerobitmask
flags must be 0
Parent
VK_KHR_video_queueType
Structures