mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-29 23:40:45 +02:00
radv: promote VK_EXT_depth_clamp_zero_one to KHR
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33090>
This commit is contained in:
parent
f96e95fcc9
commit
2ba91d1deb
2 changed files with 3 additions and 1 deletions
|
|
@ -32,3 +32,4 @@ occlusionQueryPrecise on panvk
|
|||
shaderInt16 on panvk
|
||||
shaderInt64 on panvk
|
||||
imageCubeArray on panvk
|
||||
VK_KHR_depth_clamp_zero_one on RADV
|
||||
|
|
|
|||
|
|
@ -543,6 +543,7 @@ radv_physical_device_get_supported_extensions(const struct radv_physical_device
|
|||
.KHR_create_renderpass2 = true,
|
||||
.KHR_dedicated_allocation = true,
|
||||
.KHR_deferred_host_operations = true,
|
||||
.KHR_depth_clamp_zero_one = true,
|
||||
.KHR_depth_stencil_resolve = true,
|
||||
.KHR_descriptor_update_template = true,
|
||||
.KHR_device_group = true,
|
||||
|
|
@ -1251,7 +1252,7 @@ radv_physical_device_get_features(const struct radv_physical_device *pdev, struc
|
|||
.deviceFault = true,
|
||||
.deviceFaultVendorBinary = instance->debug_flags & RADV_DEBUG_HANG,
|
||||
|
||||
/* VK_EXT_depth_clamp_zero_one */
|
||||
/* VK_KHR_depth_clamp_zero_one */
|
||||
.depthClampZeroOne = true,
|
||||
|
||||
/* VK_KHR_maintenance6 */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue