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
-
sType
is the type of this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
memoryBindIndex
is the index of the device memory heap returned in VkVideoGetMemoryPropertiesKHR::memoryBindIndex
from vkGetVideoSessionMemoryRequirementsKHR. -
memory
is the allocated device memory to be bound to the video session’s heap 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.