mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 02:38:04 +02:00
radv: advertise VK_KHR_maintenance11
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
This commit is contained in:
parent
363caf2cd8
commit
92798f0bc8
3 changed files with 6 additions and 0 deletions
|
|
@ -564,6 +564,7 @@ Khronos extensions that are not part of any Vulkan version:
|
|||
VK_KHR_maintenance8 DONE (anv, hk, lvp, nvk, panvk/v10+, radv, tu)
|
||||
VK_KHR_maintenance9 DONE (anv, hk, lvp, nvk, panvk, radv)
|
||||
VK_KHR_maintenance10 DONE (anv, nvk, radv)
|
||||
VK_KHR_maintenance11 DONE (radv)
|
||||
VK_KHR_performance_query DONE (anv, radv/gfx10.3, radv/gfx11, tu, v3dv)
|
||||
VK_KHR_pipeline_binary DONE (anv, hk, nvk, panvk, radv)
|
||||
VK_KHR_pipeline_executable_properties DONE (anv, hasvk, hk, nvk, panvk, pvr, radv, tu, v3dv)
|
||||
|
|
|
|||
|
|
@ -10,3 +10,4 @@ shaderImageGatherExtended on pvr
|
|||
static C++ stdlib required on rusticl to workaround applications using their own C++ stdlib
|
||||
VK_EXT_pipeline_protected_access on RADV
|
||||
VK_EXT_extended_dynamic_state3 on panvk
|
||||
VK_KHR_maintenance11 on RADV
|
||||
|
|
|
|||
|
|
@ -731,6 +731,7 @@ radv_physical_device_get_supported_extensions(const struct radv_physical_device
|
|||
.KHR_maintenance8 = true,
|
||||
.KHR_maintenance9 = true,
|
||||
.KHR_maintenance10 = true,
|
||||
.KHR_maintenance11 = true,
|
||||
.KHR_map_memory2 = true,
|
||||
.KHR_multiview = true,
|
||||
.KHR_performance_query = radv_perf_query_supported(pdev),
|
||||
|
|
@ -1611,6 +1612,9 @@ radv_physical_device_get_features(const struct radv_physical_device *pdev, struc
|
|||
|
||||
/* VK_KHR_shader_constant_data */
|
||||
.shaderConstantData = true,
|
||||
|
||||
/* VK_KHR_maintenance11 */
|
||||
.maintenance11 = true,
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue