diff --git a/src/gpu/ccpr/GrCoverageCountingPathRenderer.cpp b/src/gpu/ccpr/GrCoverageCountingPathRenderer.cpp index 55c80c01e0..c2eb0b217d 100644 --- a/src/gpu/ccpr/GrCoverageCountingPathRenderer.cpp +++ b/src/gpu/ccpr/GrCoverageCountingPathRenderer.cpp @@ -38,6 +38,7 @@ bool GrCoverageCountingPathRenderer::IsSupported(const GrCaps& caps, CoverageTyp return true; } +#if 0 if (!caps.driverDisableMSAACCPR() && caps.internalMultisampleCount(defaultA8Format) > 1 && caps.sampleLocationsSupport() && @@ -47,6 +48,7 @@ bool GrCoverageCountingPathRenderer::IsSupported(const GrCaps& caps, CoverageTyp } return true; } +#endif return false; } diff --git a/tests/GrCCPRTest.cpp b/tests/GrCCPRTest.cpp index 60fbe130c4..d152ac4215 100644 --- a/tests/GrCCPRTest.cpp +++ b/tests/GrCCPRTest.cpp @@ -63,9 +63,11 @@ public: fDContext.get(), GrColorType::kRGBA_8888, nullptr, SkBackingFit::kExact, {kCanvasSize, kCanvasSize})) , fDoStroke(DoStroke::kYes == doStroke) { +#if 0 if (!fCCPR) { ERRORF(reporter, "ccpr not enabled in GrDirectContext for ccpr tests"); } +#endif if (!fRTC) { ERRORF(reporter, "failed to create GrSurfaceDrawContext for ccpr tests"); }