mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-11 15:40:31 +01:00
tu: Advertise VK_KHR_depth_clamp_zero_one
This was promoted from EXT. Signed-off-by: Valentine Burley <valentine.burley@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39823>
This commit is contained in:
parent
b828bba6f6
commit
ff4e1b9ed9
2 changed files with 3 additions and 2 deletions
|
|
@ -541,7 +541,7 @@ Khronos extensions that are not part of any Vulkan version:
|
|||
VK_KHR_calibrated_timestamps DONE (anv, hk, kk, nvk, panvk/v10+, radv, tu/a750+, vn)
|
||||
VK_KHR_compute_shader_derivatives DONE (anv, lvp, nvk, radv, tu, vn)
|
||||
VK_KHR_cooperative_matrix DONE (anv, nvk/Turing+, radv/gfx11+, vn)
|
||||
VK_KHR_depth_clamp_zero_one DONE (anv, nvk, panvk, radv, vn)
|
||||
VK_KHR_depth_clamp_zero_one DONE (anv, nvk, panvk, radv, tu, vn)
|
||||
VK_KHR_deferred_host_operations DONE (anv, hasvk, lvp, radv, tu, vn)
|
||||
VK_KHR_display DONE (anv, nvk, panvk, pvr, radv, tu, v3dv, vn)
|
||||
VK_KHR_display_swapchain not started
|
||||
|
|
|
|||
|
|
@ -180,6 +180,7 @@ get_device_extensions(const struct tu_physical_device *device,
|
|||
.KHR_create_renderpass2 = true, // tu_has_multiview(device),
|
||||
.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,
|
||||
|
|
@ -629,7 +630,7 @@ tu_get_features(struct tu_physical_device *pdevice,
|
|||
features->customBorderColors = true;
|
||||
features->customBorderColorWithoutFormat = true;
|
||||
|
||||
/* VK_EXT_depth_clamp_zero_one */
|
||||
/* VK_KHR_depth_clamp_zero_one */
|
||||
features->depthClampZeroOne = true;
|
||||
|
||||
/* VK_EXT_depth_clip_control */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue