C Specification
The VkVideoPictureResourceKHR structure is defined as:
// Provided by VK_KHR_video_queue
typedef struct VkVideoPictureResourceKHR {
VkStructureType sType;
const void* pNext;
VkOffset2D codedOffset;
VkExtent2D codedExtent;
uint32_t baseArrayLayer;
VkImageView imageViewBinding;
} VkVideoPictureResourceKHR;
Members
-
sTypeis the type of this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
codedOffsetis the offset to be used for the picture resource. -
codedExtentis the extent to be used for the picture resource. -
baseArrayLayeris the first array layer to be accessed for the Decode or Encode Operations. -
imageViewBindingis a VkImageView image view representing this picture resource.
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.