From b63dab29f097eb5ccae12cb1d6128936ef9f705b Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Thu, 24 Oct 2024 14:35:37 +0200 Subject: [PATCH] panvk: expose EXT_depth_clip_enable Reviewed-by: Boris Brezillon Reviewed-by: Lars-Ivar Hesselberg Simonsen Part-of: --- docs/features.txt | 2 +- src/panfrost/vulkan/panvk_physical_device.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/features.txt b/docs/features.txt index 52aaaa788e2..37e2edd1c04 100644 --- a/docs/features.txt +++ b/docs/features.txt @@ -579,7 +579,7 @@ Khronos extensions that are not part of any Vulkan version: VK_EXT_depth_bias_control DONE (anv, nvk, radv) VK_EXT_depth_clamp_control DONE (anv, hasvk, nvk, radv) VK_EXT_depth_clip_control DONE (anv, hasvk, lvp, nvk, radv, tu, v3dv, vn) - VK_EXT_depth_clip_enable DONE (anv, hasvk, lvp, nvk, radv, tu, v3dv/vc7+, vn) + VK_EXT_depth_clip_enable DONE (anv, hasvk, lvp, nvk, panvk, radv, tu, v3dv/vc7+, vn) VK_EXT_depth_range_unrestricted DONE (anv/gen20+, nvk, radv, lvp) VK_EXT_descriptor_buffer DONE (anv, lvp, nvk, radv, tu) VK_EXT_device_address_binding_report DONE (radv, tu) diff --git a/src/panfrost/vulkan/panvk_physical_device.c b/src/panfrost/vulkan/panvk_physical_device.c index ce2274cf027..ed11a6d41d9 100644 --- a/src/panfrost/vulkan/panvk_physical_device.c +++ b/src/panfrost/vulkan/panvk_physical_device.c @@ -178,6 +178,7 @@ get_device_extensions(const struct panvk_physical_device *device, .KHR_variable_pointers = true, .EXT_buffer_device_address = true, .EXT_custom_border_color = true, + .EXT_depth_clip_enable = true, .EXT_external_memory_dma_buf = true, .EXT_graphics_pipeline_library = true, .EXT_image_drm_format_modifier = true,