aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/private
diff options
context:
space:
mode:
authorGravatar Chris Dalton <csmartdalton@google.com>2017-09-29 09:53:58 -0600
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-09-29 16:36:24 +0000
commitc739b7260a36ed4f9ea803991909a438629ca1d2 (patch)
tree2af5f127fe949856773cfada9fed7363a6192047 /include/private
parent980379d47589f06719c4f3545c412789bf4d43f4 (diff)
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>
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)