mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 17:48:10 +02:00
r600g: disable hyperz by default on 9.1
There are too many cases were we end up with lockups. Once we sort out the remaining issues on master, they can be backported and hyperz can be re-enabled on 9.1 Reviewed-by: Michel Dänzer <michel.daenzer@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
f0440493c2
commit
e78b553195
1 changed files with 1 additions and 1 deletions
|
|
@ -1157,7 +1157,7 @@ struct pipe_screen *r600_screen_create(struct radeon_winsys *ws)
|
|||
* case were triggering lockup quickly such as :
|
||||
* piglit/bin/depthstencil-render-miplevels 1024 d=s=z24_s8
|
||||
*/
|
||||
rscreen->use_hyperz = debug_get_bool_option("R600_HYPERZ", TRUE);
|
||||
rscreen->use_hyperz = debug_get_bool_option("R600_HYPERZ", FALSE);
|
||||
rscreen->use_hyperz = rscreen->info.drm_minor >= 26 ? rscreen->use_hyperz : FALSE;
|
||||
|
||||
rscreen->global_pool = compute_memory_pool_new(rscreen);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue