Module: Mesa Branch: main Commit: 2a9f8a256a6e4151201a18588a97274dae8f7f10 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=2a9f8a256a6e4151201a18588a97274dae8f7f10
Author: Sagar Ghuge <sagar.gh...@intel.com> Date: Fri Nov 3 11:39:06 2023 -0700 isl: Enable MCS compression on ACM platform Signed-off-by: Sagar Ghuge <sagar.gh...@intel.com> Reviewed-by: Kenneth Graunke <kenn...@whitecape.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26043> --- src/intel/isl/isl.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/intel/isl/isl.c b/src/intel/isl/isl.c index b1a745aa29e..3a962fe8119 100644 --- a/src/intel/isl/isl.c +++ b/src/intel/isl/isl.c @@ -2770,10 +2770,6 @@ isl_surf_get_mcs_surf(const struct isl_device *dev, if (surf->msaa_layout != ISL_MSAA_LAYOUT_ARRAY) return false; - /* We are seeing failures with mcs on dg2, so disable it for now. */ - if (intel_device_info_is_dg2(dev->info)) - return false; - /* The following are true of all multisampled surfaces */ assert(surf->samples > 1); assert(surf->dim == ISL_SURF_DIM_2D);