Structures
VkImageTilingControlCreateInfoEXT
Specifies additional creation parameters for image tiling
If the pNext chain of VkImageCreateInfo includes a
VkImageTilingControlCreateInfoEXT structure, then that structure
specifies the optimal tiling arrangement for this image.
The VkImageTilingControlCreateInfoEXT structure is defined as:
typedef struct VkImageTilingControlCreateInfoEXT {
VkStructureType sType;
const void* pNext;
VkImageTilingControlEXT tilingControl;
} VkImageTilingControlCreateInfoEXT;
pub struct ImageTilingControlCreateInfoEXT {
s_type: vk::StructureType,
p_next: *const c_void,
tiling_control: vk::ImageTilingControlEXT,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.imageTilingis a VkImageTilingControlEXT value specifying the optimal tiling arrangement for the image.
Valid Usage
VUID-VkImageTilingControlCreateInfoEXT-imageTiling-12481
If VkImageTilingControlCreateInfoEXT::imageTiling is not
VK_IMAGE_TILING_CONTROL_DEFAULT_EXT, the
imageTilingControl feature must
be enabled
Valid Usage (Implicit)
VUID-VkImageTilingControlCreateInfoEXT-sType-sType
sType must be VK_STRUCTURE_TYPE_IMAGE_TILING_CONTROL_CREATE_INFO_EXT
VUID-VkImageTilingControlCreateInfoEXT-tilingControl-parameter
tilingControl must be a valid VkImageTilingControlEXT value