C Specification
The VkVideoSessionMemoryRequirementsKHR structure is defined as:
// Provided by VK_KHR_video_queue
typedef struct VkVideoSessionMemoryRequirementsKHR {
VkStructureType sType;
void* pNext;
uint32_t memoryBindIndex;
VkMemoryRequirements memoryRequirements;
} VkVideoSessionMemoryRequirementsKHR;
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 memory binding. -
memoryRequirements
is a VkMemoryRequirements structure in which the requested memory binding requirements for the binding index specified bymemoryBindIndex
are returned.
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.