C Specification
The VkNativeBufferPropertiesOHOS structure is defined as:
// Provided by VK_OHOS_external_memory
typedef struct VkNativeBufferPropertiesOHOS {
VkStructureType sType;
void* pNext;
VkDeviceSize allocationSize;
uint32_t memoryTypeBits;
} VkNativeBufferPropertiesOHOS;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
allocationSizeis the size of the external memory. -
memoryTypeBitsis a bitmask containing one bit set for every memory type which the specified Open Harmony OS native buffer can be imported as.
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.