aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar Chris Dalton <csmartdalton@google.com>2017-11-03 23:09:34 -0600
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-11-06 16:40:39 +0000
commite4aa0c4207c4bd8b4b63ed520f36110c71a9b062 (patch)
tree36f56c0c9f66564f3138cab9162cf7c05dbf42e8 /include
parent9f545bc18a1fdff64d40104028c6d8449e660a6e (diff)
Disable CCPR while we sort out clipping
The current usage of CCPR by clipping code is suboptimal. This is causing regressions on the bots and projects like Flutter that make heavy use of clipPath. Disabling CCPR while we fix it up. Bug: skia:7190 Bug: flutter:12839 Change-Id: I03af5249b53cf2eab5a13d85a5f87708030c8666 Reviewed-on: https://skia-review.googlesource.com/67920 Reviewed-by: Derek Sollenberger <djsollen@google.com> Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Chris Dalton <csmartdalton@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 b4cbf211c3..3aa6aa5be6 100644
--- a/include/private/GrTypesPriv.h
+++ b/include/private/GrTypesPriv.h
@@ -804,7 +804,9 @@ enum class GpuPathRenderers {
kTessellating = 1 << 7,
kAll = (kTessellating | (kTessellating - 1)),
- kDefault = kAll
+
+ // Temporarily disabling CCPR while we sort out issues with clipping.
+ kDefault = kAll & ~kCoverageCounting,
};
/**