From 67874b7473a3456a14c166cad030ed4c46a5c5c5 Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Thu, 16 Apr 2026 10:24:03 +0200 Subject: [PATCH] panvk: drop out-of-date TODO We already did this, so let's drop this TODO. Fixes: d36e6af3290 ("panvk: Bump the max image size on v11+") Reviewed-by: Boris Brezillon (cherry picked from commit f13720710885c70201998c8dc31daab7d6dce1a3) Part-of: --- .pick_status.json | 2 +- src/panfrost/vulkan/panvk_vX_physical_device.c | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.pick_status.json b/.pick_status.json index d7fef87ebbc..3b16dd8da98 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -5094,7 +5094,7 @@ "description": "panvk: drop out-of-date TODO", "nominated": true, "nomination_type": 2, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": "d36e6af32900cd0dc7d1d56bda42b37bf86bd732", "notes": null diff --git a/src/panfrost/vulkan/panvk_vX_physical_device.c b/src/panfrost/vulkan/panvk_vX_physical_device.c index b3f751998fc..327bde9df92 100644 --- a/src/panfrost/vulkan/panvk_vX_physical_device.c +++ b/src/panfrost/vulkan/panvk_vX_physical_device.c @@ -628,9 +628,6 @@ panvk_per_arch(get_physical_device_properties)( * except for 2D/Cube dimensions where taking a power-of-two would be * too limiting, so we pick power-of-two-minus-one, which makes things * fit exactly in our 32-bit budget. - * - * TODO: increase the limit on v11+ once we have all the necessary bits - * patched to handle the size/stride field extension. */ .maxImageDimension1D = (1 << 16), .maxImageDimension2D = PAN_ARCH <= 10 ? (1 << 14) - 1 : (1 << 16),