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