Structures
VkAndroidHardwareBufferPropertiesANDROID
Properties of External Memory Android Hardware Buffers
The VkAndroidHardwareBufferPropertiesANDROID
structure returned is
defined as:
typedef struct VkAndroidHardwareBufferPropertiesANDROID {
VkStructureType sType;
void* pNext;
VkDeviceSize allocationSize;
uint32_t memoryTypeBits;
} VkAndroidHardwareBufferPropertiesANDROID;
sType
is a VkStructureType value identifying this structure.pNext
isNULL
or a pointer to a structure extending this structure.allocationSize
is the size of the external memorymemoryTypeBits
is a bitmask containing one bit set for every memory type which the specified Android hardware buffer can be imported as.
Valid Usage (Implicit)
VUID-VkAndroidHardwareBufferPropertiesANDROID-sType-sType
sType
must be VK_STRUCTURE_TYPE_ANDROID_HARDWARE_BUFFER_PROPERTIES_ANDROID
VUID-VkAndroidHardwareBufferPropertiesANDROID-pNext-pNext
Each pNext
member of any structure (including this one) in the pNext
chain must be either NULL
or a pointer to a valid instance of VkAndroidHardwareBufferFormatProperties2ANDROID, VkAndroidHardwareBufferFormatPropertiesANDROID, or VkAndroidHardwareBufferFormatResolvePropertiesANDROID
VUID-VkAndroidHardwareBufferPropertiesANDROID-sType-unique
The sType
value of each struct in the pNext
chain must be unique