r300: disable microtiling for scanout buffers

Does not work with R300/R400 due to kernel driver limitations.
Suggested by Marek Olšák.

Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/12010
Fixes: f424ef1801
Signed-off-by: Pavel Ondračka <pavel.ondracka@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32638>
This commit is contained in:
Pavel Ondračka
2024-12-13 21:49:38 +01:00
committed by Marge Bot
parent 1154b07d09
commit 8bc271e90d
+4 -3
View File
@@ -510,11 +510,12 @@ static void r300_setup_tiling(struct r300_screen *screen,
break;
case 2:
tex->tex.microtile =
tex->b.bind & PIPE_BIND_SCANOUT ?
RADEON_LAYOUT_TILED : RADEON_LAYOUT_SQUARETILED;
tex->tex.microtile = RADEON_LAYOUT_SQUARETILED;
break;
}
if (tex->b.bind & PIPE_BIND_SCANOUT) {
tex->tex.microtile = RADEON_LAYOUT_LINEAR;
}
if (dbg_no_tiling) {
return;