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
-
sType
is the type of this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
codedOffset
is the offset to be used for the picture resource. -
codedExtent
is the extent to be used for the picture resource. -
baseArrayLayer
is the first array layer to be accessed for the Decode or Encode Operations. -
imageViewBinding
is 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.