From 1a4b4dba9a46a896ef7c2ce1795d101abb27edda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tapani=20P=C3=A4lli?= Date: Fri, 14 Nov 2025 09:21:10 +0200 Subject: [PATCH] anv: remove own GetRenderingAreaGranularityKHR MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As it does the same as common version provided by runtime. Signed-off-by: Tapani Pälli Reviewed-by: Lionel Landwerlin Part-of: --- src/intel/vulkan/anv_image.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/intel/vulkan/anv_image.c b/src/intel/vulkan/anv_image.c index 736ebf048ea..d4db8212ce4 100644 --- a/src/intel/vulkan/anv_image.c +++ b/src/intel/vulkan/anv_image.c @@ -4075,14 +4075,3 @@ anv_layout_has_untracked_aux_writes(const struct intel_device_info * const devin return true; } - -void anv_GetRenderingAreaGranularityKHR( - VkDevice _device, - const VkRenderingAreaInfoKHR* pRenderingAreaInfo, - VkExtent2D* pGranularity) -{ - *pGranularity = (VkExtent2D) { - .width = 1, - .height = 1, - }; -}