From 26024e97015dadaae4cd03084ac0cad450b0bf3e Mon Sep 17 00:00:00 2001 From: Iago Toral Quiroga Date: Mon, 5 Sep 2022 08:28:19 +0200 Subject: [PATCH] v3dv: expose VK_EXT_tooling_info MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There is a stub for this implemented in the common code we can use which reports 0 tools. Reviewed-by: Alejandro PiƱeiro Part-of: --- docs/features.txt | 2 +- src/broadcom/vulkan/v3dv_device.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/features.txt b/docs/features.txt index 9b0942d8a15..7b8ef0f0a88 100644 --- a/docs/features.txt +++ b/docs/features.txt @@ -494,7 +494,7 @@ Vulkan 1.3 -- all DONE: anv, radv, lvp VK_EXT_subgroup_size_control DONE (anv, lvp, radv, tu, vn) VK_EXT_texel_buffer_alignment DONE (anv, lvp, radv, tu, v3dv, vn) VK_EXT_texture_compression_astc_hdr DONE (vn) - VK_EXT_tooling_info DONE (anv, vn) + VK_EXT_tooling_info DONE (anv, v3dv, vn) VK_EXT_ycbcr_2plane_444_formats DONE (vn) Khronos extensions that are not part of any Vulkan version: diff --git a/src/broadcom/vulkan/v3dv_device.c b/src/broadcom/vulkan/v3dv_device.c index d623dd84a8c..9904248de4a 100644 --- a/src/broadcom/vulkan/v3dv_device.c +++ b/src/broadcom/vulkan/v3dv_device.c @@ -181,6 +181,7 @@ get_device_extensions(const struct v3dv_physical_device *device, .EXT_provoking_vertex = true, .EXT_separate_stencil_usage = true, .EXT_texel_buffer_alignment = true, + .EXT_tooling_info = true, .EXT_vertex_attribute_divisor = true, #ifdef ANDROID .ANDROID_native_buffer = true,