Structures
VkPhysicalDeviceUnifiedImageLayoutsFeaturesKHR
Structure describing whether the implementation provides unified image layouts
The VkPhysicalDeviceUnifiedImageLayoutsFeaturesKHR structure is
defined as:
typedef struct VkPhysicalDeviceUnifiedImageLayoutsFeaturesKHR {
VkStructureType sType;
void* pNext;
VkBool32 unifiedImageLayouts;
VkBool32 unifiedImageLayoutsVideo;
} VkPhysicalDeviceUnifiedImageLayoutsFeaturesKHR;
pub struct PhysicalDeviceUnifiedImageLayoutsFeaturesKHR {
s_type: vk::StructureType,
p_next: *mut c_void,
unified_image_layouts: vk::Bool32,
unified_image_layouts_video: vk::Bool32,
}
This structure describes the following feature:
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.-
unifiedImageLayoutsspecifies whether usage ofVK_IMAGE_LAYOUT_GENERAL, where valid, incurs no loss in efficiency. Additionally, it indicates whether it can be used in place ofVK_IMAGE_LAYOUT_ATTACHMENT_FEEDBACK_LOOP_OPTIMAL_EXT. -
unifiedImageLayoutsVideospecifies whetherVK_IMAGE_LAYOUT_GENERALcan be used in place of any of the following image layouts with no loss in efficiency.VK_IMAGE_LAYOUT_VIDEO_DECODE_DST_KHRVK_IMAGE_LAYOUT_VIDEO_DECODE_SRC_KHRVK_IMAGE_LAYOUT_VIDEO_DECODE_DPB_KHRVK_IMAGE_LAYOUT_VIDEO_ENCODE_DST_KHRVK_IMAGE_LAYOUT_VIDEO_ENCODE_SRC_KHRVK_IMAGE_LAYOUT_VIDEO_ENCODE_DPB_KHRVK_IMAGE_LAYOUT_VIDEO_ENCODE_QUANTIZATION_MAP_KHR
If the VkPhysicalDeviceUnifiedImageLayoutsFeaturesKHR structure is included in the pNext chain of the
VkPhysicalDeviceFeatures2 structure passed to
vkGetPhysicalDeviceFeatures2, it is filled in to indicate whether each
corresponding feature is supported.
If the application wishes to use a VkDevice with any features
described by VkPhysicalDeviceUnifiedImageLayoutsFeaturesKHR, it must add an instance of the structure,
with the desired feature members set to VK_TRUE, to the pNext
chain of VkDeviceCreateInfo when creating the VkDevice.
Valid Usage (Implicit)
VUID-VkPhysicalDeviceUnifiedImageLayoutsFeaturesKHR-sType-sType
sType must be VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_UNIFIED_IMAGE_LAYOUTS_FEATURES_KHR