panfrost: Remove incorrect comment

The comment was wrong in its original location and is wrong here, just
remove it.

Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10542>
This commit is contained in:
Icecream95 2021-04-30 22:16:12 +12:00 committed by Marge Bot
parent f03da01fe3
commit 9910a14a1a

View file

@ -932,11 +932,10 @@ pan_emit_fragment_job(const struct panfrost_device *dev,
pan_section_pack(out, FRAGMENT_JOB, PAYLOAD, payload) {
payload.bound_min_x = fb->extent.minx >> MALI_TILE_SHIFT;
payload.bound_min_y = fb->extent.miny >> MALI_TILE_SHIFT;
/* Batch max values are inclusive, we need to subtract 1. */
payload.bound_max_x = fb->extent.maxx >> MALI_TILE_SHIFT;
payload.bound_max_y = fb->extent.maxy >> MALI_TILE_SHIFT;
payload.framebuffer = fbd;
if (fb->tile_map.base) {
payload.has_tile_enable_map = true;
payload.tile_enable_map = fb->tile_map.base;