aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/gl
diff options
context:
space:
mode:
authorGravatar Chris Dalton <csmartdalton@google.com>2018-06-25 06:44:01 -0600
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-06-25 13:06:46 +0000
commitc4e72a4d5a9cfc583804fce6c029696cb173a904 (patch)
treecf71b240d6f104c0c2a7939a2c37435c967fd727 /src/gpu/gl
parent752e08b1ae3eeae807a8262380dc02ba9af9c989 (diff)
ccpr: Blacklist PowerVR Rogue in GL
Bug: skia: Change-Id: Icba3de2eabc24840ae6917e0eeaa279788397653 Reviewed-on: https://skia-review.googlesource.com/137341 Reviewed-by: Joe Gregorio <jcgregorio@google.com> Commit-Queue: Chris Dalton <csmartdalton@google.com>
Diffstat (limited to 'src/gpu/gl')
-rw-r--r--src/gpu/gl/GrGLCaps.cpp6
1 files changed, 6 insertions, 0 deletions
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) {