C Specification
The VkDeviceImageMemoryRequirements
structure is defined as:
// Provided by VK_VERSION_1_3
typedef struct VkDeviceImageMemoryRequirements {
VkStructureType sType;
const void* pNext;
const VkImageCreateInfo* pCreateInfo;
VkImageAspectFlagBits planeAspect;
} VkDeviceImageMemoryRequirements;
or the equivalent
// Provided by VK_KHR_maintenance4
typedef VkDeviceImageMemoryRequirements VkDeviceImageMemoryRequirementsKHR;
Members
-
sType
is a VkStructureType value identifying this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
pCreateInfo
is a pointer to a VkImageCreateInfo structure containing parameters affecting creation of the image to query. -
planeAspect
is a VkImageAspectFlagBits value specifying the aspect corresponding to the image plane to query. This parameter is ignored unlesspCreateInfo
::tiling
isVK_IMAGE_TILING_DRM_FORMAT_MODIFIER_EXT
, orpCreateInfo
::flags
hasVK_IMAGE_CREATE_DISJOINT_BIT
set.
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.