panvk: drop out-of-date TODO
Some checks are pending
macOS-CI / macOS-CI (dri) (push) Waiting to run
macOS-CI / macOS-CI (xlib) (push) Waiting to run

We already did this, so let's drop this TODO.

Fixes: d36e6af329 ("panvk: Bump the max image size on v11+")
Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/40990>
This commit is contained in:
Erik Faye-Lund 2026-04-16 10:24:03 +02:00 committed by Marge Bot
parent f949e3b819
commit f137207108

View file

@ -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),