mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-18 10:48:21 +02:00
ac/gpu_info: set has_zero_index_buffer_bug for Navi12 too
Acked-by: Timur Kristóf <timur.kristof@gmail.com>
Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Cc: mesa-stable@lists.freedesktop.org
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10813>
(cherry picked from commit 38d3c4251d)
This commit is contained in:
parent
a12b11ef0e
commit
ec77157dea
2 changed files with 3 additions and 3 deletions
|
|
@ -1282,7 +1282,7 @@
|
|||
"description": "ac/gpu_info: set has_zero_index_buffer_bug for Navi12 too",
|
||||
"nominated": true,
|
||||
"nomination_type": 0,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": null
|
||||
},
|
||||
|
|
|
|||
|
|
@ -878,8 +878,8 @@ bool ac_query_gpu_info(int fd, void *dev_p, struct radeon_info *info,
|
|||
|
||||
info->has_ls_vgpr_init_bug = info->family == CHIP_VEGA10 || info->family == CHIP_RAVEN;
|
||||
|
||||
/* Drawing from 0-sized index buffers causes hangs on Navi10/14. */
|
||||
info->has_zero_index_buffer_bug = info->family == CHIP_NAVI10 || info->family == CHIP_NAVI14;
|
||||
/* Drawing from 0-sized index buffers causes hangs on gfx10. */
|
||||
info->has_zero_index_buffer_bug = info->chip_class == GFX10;
|
||||
|
||||
/* Whether chips are affected by the image load/sample/gather hw bug when
|
||||
* DCC is enabled (ie. WRITE_COMPRESS_ENABLE should be 0).
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue