C Specification
The VkBindVideoSessionMemoryInfoKHR structure is defined as:
// Provided by VK_KHR_video_queue
typedef struct VkBindVideoSessionMemoryInfoKHR {
VkStructureType sType;
const void* pNext;
uint32_t memoryBindIndex;
VkDeviceMemory memory;
VkDeviceSize memoryOffset;
VkDeviceSize memorySize;
} VkBindVideoSessionMemoryInfoKHR;
Members
-
sTypeis the type of this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
memoryBindIndexis the index of the memory binding returned in VkVideoSessionMemoryRequirementsKHR::memoryBindIndexfrom vkGetVideoSessionMemoryRequirementsKHR. -
memoryis the allocated device memory to be bound to the video session’s memory binding with indexmemoryBindIndex. -
memoryOffsetis the start offset of the region ofmemorywhich is to be bound. -
memorySizeis the size in bytes of the region ofmemory, starting frommemoryOffsetbytes, to be bound.
See Also
VK_KHR_video_queue, VkDeviceMemory, VkDeviceSize, VkStructureType, vkBindVideoSessionMemoryKHR
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.