diff --git a/src/intel/isl/isl.c b/src/intel/isl/isl.c index 56e10f256c7..ca8d26b78c7 100644 --- a/src/intel/isl/isl.c +++ b/src/intel/isl/isl.c @@ -2097,6 +2097,10 @@ 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);