diff --git a/.pick_status.json b/.pick_status.json index d816f6fee84..1fbbb1d42fa 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -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 }, diff --git a/src/amd/common/ac_gpu_info.c b/src/amd/common/ac_gpu_info.c index 120dc10bec0..d8f45fab7ee 100644 --- a/src/amd/common/ac_gpu_info.c +++ b/src/amd/common/ac_gpu_info.c @@ -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).