From c4e72a4d5a9cfc583804fce6c029696cb173a904 Mon Sep 17 00:00:00 2001 From: Chris Dalton Date: Mon, 25 Jun 2018 06:44:01 -0600 Subject: ccpr: Blacklist PowerVR Rogue in GL Bug: skia: Change-Id: Icba3de2eabc24840ae6917e0eeaa279788397653 Reviewed-on: https://skia-review.googlesource.com/137341 Reviewed-by: Joe Gregorio Commit-Queue: Chris Dalton --- src/gpu/gl/GrGLCaps.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/gpu/gl/GrGLCaps.cpp') diff --git a/src/gpu/gl/GrGLCaps.cpp b/src/gpu/gl/GrGLCaps.cpp index 3705e5c98c..d180ac264d 100644 --- a/src/gpu/gl/GrGLCaps.cpp +++ b/src/gpu/gl/GrGLCaps.cpp @@ -2696,6 +2696,12 @@ void GrGLCaps::applyDriverCorrectnessWorkarounds(const GrGLContextInfo& ctxInfo, fBlacklistCoverageCounting = true; } #endif + + // "shapes_mixed_10000_32x33" bench crashes PowerVRGX6250 in Release mode with ccpr. + // http://skbug.com/8098 + if (kPowerVRRogue_GrGLRenderer == ctxInfo.renderer()) { + fBlacklistCoverageCounting = true; + } } void GrGLCaps::onApplyOptionsOverrides(const GrContextOptions& options) { -- cgit v1.2.3