mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-04 17:50:11 +01:00
ac: fix has_vrs_ds_export_bug for VanGogh
Missed it.
Fixes: 0a8a9d9d63 ("ac: add radeon_info::has_vrs_ds_export_bug")
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19272>
This commit is contained in:
parent
4aef5f8825
commit
1ec5b6774d
1 changed files with 2 additions and 1 deletions
|
|
@ -1105,7 +1105,8 @@ bool ac_query_gpu_info(int fd, void *dev_p, struct radeon_info *info)
|
|||
* depth/stencil from a FS for multi-pixel fragments.
|
||||
*/
|
||||
info->has_vrs_ds_export_bug = info->family == CHIP_NAVI21 ||
|
||||
info->family == CHIP_NAVI22;
|
||||
info->family == CHIP_NAVI22 ||
|
||||
info->family == CHIP_VANGOGH;
|
||||
|
||||
/* HW bug workaround when CS threadgroups > 256 threads and async compute
|
||||
* isn't used, i.e. only one compute job can run at a time. If async
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue