Structures
VkSparseImageFormatProperties
Structure specifying sparse image format properties
The VkSparseImageFormatProperties structure is defined as:
typedef struct VkSparseImageFormatProperties {
VkImageAspectFlags aspectMask;
VkExtent3D imageGranularity;
VkSparseImageFormatFlags flags;
} VkSparseImageFormatProperties;
pub struct SparseImageFormatProperties {
aspect_mask: vk::ImageAspectFlags,
image_granularity: vk::Extent3D,
flags: vk::SparseImageFormatFlags,
}
aspectMaskis a bitmask VkImageAspectFlagBits specifying which aspects of the image the properties apply to.imageGranularityis the width, height, and depth of the sparse image block in texels.flagsis a bitmask of VkSparseImageFormatFlagBits specifying additional information about the sparse resource.
Parent
VK_VERSION_1_0Type
Structures