panvk: drop out-of-date TODO

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>
(cherry picked from commit f137207108)

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41269>
This commit is contained in:
Erik Faye-Lund 2026-04-16 10:24:03 +02:00 committed by Eric Engestrom
parent a58d79067c
commit 67874b7473
2 changed files with 1 additions and 4 deletions

View file

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

View file

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