aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkRecorder.cpp
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2014-12-12 08:46:25 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2014-12-12 08:46:25 -0800
commitf0f14113431ace669f278fdd97b50950f2cf4c80 (patch)
tree1fab64f424d97fdd089622f10b3d5335bc4f1380 /src/core/SkRecorder.cpp
parent59dba146fe4170c4986b2494414c08be2c93d4a2 (diff)
Cull pushCull and popCull from Skia.
These calls are unused and going away. Waiting on crrev.com/796083002. BUG=skia: Review URL: https://codereview.chromium.org/794263002
Diffstat (limited to 'src/core/SkRecorder.cpp')
-rw-r--r--src/core/SkRecorder.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/core/SkRecorder.cpp b/src/core/SkRecorder.cpp
index e29d43d7d8..71a1167543 100644
--- a/src/core/SkRecorder.cpp
+++ b/src/core/SkRecorder.cpp
@@ -295,14 +295,6 @@ void SkRecorder::didRestore() {
APPEND(Restore, this->devBounds(), this->getTotalMatrix());
}
-void SkRecorder::onPushCull(const SkRect& rect) {
- APPEND(PushCull, rect);
-}
-
-void SkRecorder::onPopCull() {
- APPEND(PopCull);
-}
-
void SkRecorder::didConcat(const SkMatrix& matrix) {
this->didSetMatrix(this->getTotalMatrix());
}