mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 11:28:05 +02:00
radv: advertise VK_KHR_maintenance8
There is nothing to do for VK_PIPELINE_CACHE_CREATE_INTERNALLY_SYNCHRONIZED_MERGE_BIT_KHR because the vulkan/runtime code already locks the dstCache unconditionally. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33091>
This commit is contained in:
parent
40131ddadc
commit
d4ff011b12
2 changed files with 5 additions and 0 deletions
|
|
@ -33,3 +33,4 @@ shaderInt16 on panvk
|
||||||
shaderInt64 on panvk
|
shaderInt64 on panvk
|
||||||
imageCubeArray on panvk
|
imageCubeArray on panvk
|
||||||
VK_KHR_depth_clamp_zero_one on RADV
|
VK_KHR_depth_clamp_zero_one on RADV
|
||||||
|
VK_KHR_maintenance8 on radv
|
||||||
|
|
|
||||||
|
|
@ -583,6 +583,7 @@ radv_physical_device_get_supported_extensions(const struct radv_physical_device
|
||||||
.KHR_maintenance5 = true,
|
.KHR_maintenance5 = true,
|
||||||
.KHR_maintenance6 = true,
|
.KHR_maintenance6 = true,
|
||||||
.KHR_maintenance7 = true,
|
.KHR_maintenance7 = true,
|
||||||
|
.KHR_maintenance8 = true,
|
||||||
.KHR_map_memory2 = true,
|
.KHR_map_memory2 = true,
|
||||||
.KHR_multiview = true,
|
.KHR_multiview = true,
|
||||||
.KHR_performance_query = radv_perf_query_supported(pdev),
|
.KHR_performance_query = radv_perf_query_supported(pdev),
|
||||||
|
|
@ -1321,6 +1322,9 @@ radv_physical_device_get_features(const struct radv_physical_device *pdev, struc
|
||||||
/* VK_EXT_device_generated_commands */
|
/* VK_EXT_device_generated_commands */
|
||||||
.deviceGeneratedCommands = true,
|
.deviceGeneratedCommands = true,
|
||||||
.dynamicGeneratedPipelineLayout = true,
|
.dynamicGeneratedPipelineLayout = true,
|
||||||
|
|
||||||
|
/* VK_KHR_maintenance8 */
|
||||||
|
.maintenance8 = true,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue