aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar Jim Van Verth <jvanverth@google.com>2017-09-29 18:42:13 +0000
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-09-29 18:42:25 +0000
commitf57c6de7843a74a0723f1ba4a82b7c9f43a33e1a (patch)
tree04d6675f12c8a1561d797e1d5c82d0109482748b /include
parente74dafc74d8d87f10d9be7889349990d11c245f9 (diff)
Revert "Enable coverage counting path rendering on non-Android"
This reverts commit c739b7260a36ed4f9ea803991909a438629ca1d2. Reason for revert: Turning tree red. Original change's description: > Enable coverage counting path rendering on non-Android > > Bug: skia: > Change-Id: Ife4c4378bf4323fb4a58fecfade09320ebc28026 > Reviewed-on: https://skia-review.googlesource.com/53000 > Reviewed-by: Derek Sollenberger <djsollen@google.com> > Reviewed-by: Mike Reed <reed@google.com> > Commit-Queue: Chris Dalton <csmartdalton@google.com> TBR=djsollen@google.com,csmartdalton@google.com,reed@google.com Change-Id: I89ef472a95320ff21684ca697295cd8b3939322e No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: skia: Reviewed-on: https://skia-review.googlesource.com/53522 Reviewed-by: Jim Van Verth <jvanverth@google.com> Commit-Queue: Jim Van Verth <jvanverth@google.com>
Diffstat (limited to 'include')
-rw-r--r--include/private/GrTypesPriv.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/private/GrTypesPriv.h b/include/private/GrTypesPriv.h
index e1e797bb3c..04a0111744 100644
--- a/include/private/GrTypesPriv.h
+++ b/include/private/GrTypesPriv.h
@@ -757,7 +757,9 @@ enum class GpuPathRenderers {
kTessellating = 1 << 7,
kAll = (kTessellating | (kTessellating - 1)),
- kDefault = kAll
+
+ // Temporarily disabling CCPR by default until it has had a time to soak.
+ kDefault = kAll & ~kCoverageCounting,
};
GR_MAKE_BITFIELD_CLASS_OPS(GpuPathRenderers)