mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-29 01:30:08 +01:00
ac/gpu_info: always use distributed tessellation on gfx10
This might fix a hang on Navi14. Cc: 19.2 19.3 <mesa-stable@lists.freedesktop.org> Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
This commit is contained in:
parent
eb1e10d0be
commit
186335d17d
1 changed files with 2 additions and 2 deletions
|
|
@ -516,8 +516,8 @@ bool ac_query_gpu_info(int fd, void *dev_p,
|
|||
*/
|
||||
info->has_clear_state = info->chip_class >= GFX7;
|
||||
|
||||
info->has_distributed_tess = info->chip_class >= GFX8 &&
|
||||
info->max_se >= 2;
|
||||
info->has_distributed_tess = info->chip_class >= GFX10 ||
|
||||
(info->chip_class >= GFX8 && info->max_se >= 2);
|
||||
|
||||
info->has_dcc_constant_encode = info->family == CHIP_RAVEN2 ||
|
||||
info->family == CHIP_RENOIR ||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue