ac/gpu_info: fix the comment for the NGG->legacy transition bug
authorMarek Olšák <marek.olsak@amd.com>
Sun, 26 Sep 2021 08:29:07 +0000 (04:29 -0400)
committerMarge Bot <eric+marge@anholt.net>
Tue, 28 Sep 2021 17:30:06 +0000 (17:30 +0000)
Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13048>

src/amd/common/ac_gpu_info.c

index 029e1bc..5893f66 100644 (file)
@@ -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;