Module: Mesa Branch: main Commit: 279cd5821c55b261c4ad9930f38fa4b054b07856 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=279cd5821c55b261c4ad9930f38fa4b054b07856
Author: Marek Olšák <[email protected]> Date: Sun Sep 26 04:29:07 2021 -0400 ac/gpu_info: fix the comment for the NGG->legacy transition bug Reviewed-by: Pierre-Eric Pelloux-Prayer <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13048> --- src/amd/common/ac_gpu_info.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/amd/common/ac_gpu_info.c b/src/amd/common/ac_gpu_info.c index 029e1bc3b62..5893f6640f5 100644 --- a/src/amd/common/ac_gpu_info.c +++ b/src/amd/common/ac_gpu_info.c @@ -908,9 +908,7 @@ bool ac_query_gpu_info(int fd, void *dev_p, struct radeon_info *info, */ info->has_two_planes_iterate256_bug = info->chip_class == GFX10; - /* GE has a bug when a legacy GS draw follows an NGG draw and it requires - * a VGT_FLUSH to fix that. - */ + /* GFX10+Sienna: NGG->legacy transitions require VGT_FLUSH. */ info->has_vgt_flush_ngg_legacy_bug = info->chip_class == GFX10 || info->family == CHIP_SIENNA_CICHLID;
