aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/private
diff options
context:
space:
mode:
authorGravatar Chris Dalton <csmartdalton@google.com>2017-10-06 17:14:51 -0600
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-10-07 07:34:20 +0000
commit196efbf71cdd9a64b807e5e869cd45da5a66ac36 (patch)
tree8eea3de85042cb56b3557366e68b4a732ce687ef /include/private
parentb99a918e92584451675f1a5fbdd24a4e77a35e31 (diff)
Enable coverage counting path rendering except on Android framework
Android framework will come after collecting a bit more data. Bug: skia: Change-Id: I6f4738e457f09c976b8bf282153ca75160a1d91c Reviewed-on: https://skia-review.googlesource.com/55563 Commit-Queue: Chris Dalton <csmartdalton@google.com> Reviewed-by: Brian Salomon <bsalomon@google.com>
Diffstat (limited to 'include/private')
-rw-r--r--include/private/GrTypesPriv.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/private/GrTypesPriv.h b/include/private/GrTypesPriv.h
index 04a0111744..e1e797bb3c 100644
--- a/include/private/GrTypesPriv.h
+++ b/include/private/GrTypesPriv.h
@@ -757,9 +757,7 @@ enum class GpuPathRenderers {
kTessellating = 1 << 7,
kAll = (kTessellating | (kTessellating - 1)),
-
- // Temporarily disabling CCPR by default until it has had a time to soak.
- kDefault = kAll & ~kCoverageCounting,
+ kDefault = kAll
};
GR_MAKE_BITFIELD_CLASS_OPS(GpuPathRenderers)