radeonsi: don't enable DCC statistics gathering for small surfaces
authorMarek Olšák <marek.olsak@amd.com>
Mon, 18 Jun 2018 20:02:14 +0000 (16:02 -0400)
committerMarek Olšák <marek.olsak@amd.com>
Fri, 29 Jun 2018 02:27:25 +0000 (22:27 -0400)
src/gallium/drivers/radeonsi/si_clear.c

index 6313f90..8a3398c 100644 (file)
@@ -432,20 +432,6 @@ static void si_do_fast_color_clear(struct si_context *sctx,
                    !sctx->screen->info.htile_cmask_support_1d_tiling)
                        continue;
 
-               /* Fast clear is the most appropriate place to enable DCC for
-                * displayable surfaces.
-                */
-               vi_separate_dcc_try_enable(sctx, tex);
-
-               /* RB+ isn't supported with a CMASK clear only on Stoney,
-                * so all clears are considered to be hypothetically slow
-                * clears, which is weighed when determining whether to
-                * enable separate DCC.
-                */
-               if (tex->dcc_gather_statistics &&
-                   sctx->family == CHIP_STONEY)
-                       tex->num_slow_clears++;
-
                bool need_decompress_pass = false;
 
                /* Use a slow clear for small surfaces where the cost of
@@ -458,6 +444,22 @@ static void si_do_fast_color_clear(struct si_context *sctx,
                                 tex->buffer.b.b.width0 *
                                 tex->buffer.b.b.height0 <= 512 * 512;
 
+               /* Fast clear is the most appropriate place to enable DCC for
+                * displayable surfaces.
+                */
+               if (!too_small) {
+                       vi_separate_dcc_try_enable(sctx, tex);
+
+                       /* RB+ isn't supported with a CMASK clear only on Stoney,
+                        * so all clears are considered to be hypothetically slow
+                        * clears, which is weighed when determining whether to
+                        * enable separate DCC.
+                        */
+                       if (tex->dcc_gather_statistics &&
+                           sctx->family == CHIP_STONEY)
+                               tex->num_slow_clears++;
+               }
+
                /* Try to clear DCC first, otherwise try CMASK. */
                if (vi_dcc_enabled(tex, 0)) {
                        uint32_t reset_value;