From f13720710885c70201998c8dc31daab7d6dce1a3 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 Part-of: --- src/panfrost/vulkan/panvk_vX_physical_device.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/panfrost/vulkan/panvk_vX_physical_device.c b/src/panfrost/vulkan/panvk_vX_physical_device.c index 04b28b33a59..fdeec065d12 100644 --- a/src/panfrost/vulkan/panvk_vX_physical_device.c +++ b/src/panfrost/vulkan/panvk_vX_physical_device.c @@ -739,9 +739,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),