aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/private
diff options
context:
space:
mode:
authorGravatar Chris Dalton <csmartdalton@google.com>2017-10-09 18:14:08 +0000
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-10-09 18:41:44 +0000
commit4ba211f68fcd5eee75736891da401114640ee1c6 (patch)
tree5126ff701c286a9cd18526202dd5bc968c76b1fa /include/private
parentc4b015ad5f3b85b0c77d01ce1ce042294a3dd362 (diff)
Revert "Enable coverage counting path rendering except on Android framework"
This reverts commit 196efbf71cdd9a64b807e5e869cd45da5a66ac36. Reason for revert: 1k SKPs GPU bot fails, perf regressions to look into. Original change's description: > 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> TBR=bsalomon@google.com,csmartdalton@google.com # Not skipping CQ checks because original CL landed > 1 day ago. Bug: skia: Change-Id: I3f1a7022414ccec80541772d9912065fa4efd74e Reviewed-on: https://skia-review.googlesource.com/57300 Reviewed-by: Chris Dalton <csmartdalton@google.com> Commit-Queue: Chris Dalton <csmartdalton@google.com>
Diffstat (limited to 'include/private')
-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)