VkBindVideoSessionMemoryInfoKHR(3)
Name
VkBindVideoSessionMemoryInfoKHR - Structure specifying memory bindings for a video session object
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
-
sType
is a VkStructureType value identifying this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
memoryBindIndex
is the memory binding index to bind memory to. -
memory
is the allocated device memory to be bound to the video session’s memory binding with indexmemoryBindIndex
. -
memoryOffset
is the start offset of the region ofmemory
which is to be bound. -
memorySize
is the size in bytes of the region ofmemory
, starting frommemoryOffset
bytes, 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.