mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 02:28:10 +02:00
radeonsi: disable 2D tiling on CIK for now
Causes GPU hangs. Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
1357624abc
commit
d669992e35
1 changed files with 4 additions and 1 deletions
|
|
@ -532,7 +532,10 @@ struct pipe_resource *si_texture_create(struct pipe_screen *screen,
|
|||
if (util_format_is_compressed(templ->format)) {
|
||||
array_mode = V_009910_ARRAY_1D_TILED_THIN1;
|
||||
} else {
|
||||
array_mode = V_009910_ARRAY_2D_TILED_THIN1;
|
||||
if (rscreen->chip_class >= CIK)
|
||||
array_mode = V_009910_ARRAY_1D_TILED_THIN1; /* XXX fix me */
|
||||
else
|
||||
array_mode = V_009910_ARRAY_2D_TILED_THIN1;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue