i965/miptree: Partially resolve MCS for texture views
authorJason Ekstrand <jason.ekstrand@intel.com>
Fri, 23 Jun 2017 17:44:16 +0000 (10:44 -0700)
committerJason Ekstrand <jason.ekstrand@intel.com>
Sun, 23 Jul 2017 03:59:22 +0000 (20:59 -0700)
Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
src/mesa/drivers/dri/i965/intel_mipmap_tree.c

index 918357931203d82f8627504f454612faa9e7135c..b31e6ff7ddc7ca45b75b5bc7ceb82c84abb5897f 100644 (file)
@@ -2435,14 +2435,14 @@ intel_miptree_prepare_texture_slices(struct brw_context *brw,
          aux_supported = clear_supported = true;
       } else {
          aux_supported = can_texture_with_ccs(brw, mt, view_format);
-
-         /* Clear color is specified as ints or floats and the conversion is
-          * done by the sampler.  If we have a texture view, we would have to
-          * perform the clear color conversion manually.  Just disable clear
-          * color.
-          */
-         clear_supported = aux_supported && (mt->format == view_format);
       }
+
+      /* Clear color is specified as ints or floats and the conversion is
+       * done by the sampler.  If we have a texture view, we would have to
+       * perform the clear color conversion manually.  Just disable clear
+       * color.
+       */
+      clear_supported = aux_supported && (mt->format == view_format);
    } else if (mt->format == MESA_FORMAT_S_UINT8) {
       aux_supported = clear_supported = false;
    } else {