C Specification
The VkVideoBindMemoryKHR structure is defined as:
// Provided by VK_KHR_video_queue
typedef struct VkVideoBindMemoryKHR {
VkStructureType sType;
const void* pNext;
uint32_t memoryBindIndex;
VkDeviceMemory memory;
VkDeviceSize memoryOffset;
VkDeviceSize memorySize;
} VkVideoBindMemoryKHR;
Members
-
sTypeis the type of this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
memoryBindIndexis the index of the device memory heap returned in VkVideoGetMemoryPropertiesKHR::memoryBindIndexfrom vkGetVideoSessionMemoryRequirementsKHR. -
memoryis the allocated device memory to be bound to the video session’s heap 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.