aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkRecords.h
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/SkRecords.h
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/SkRecords.h')
-rw-r--r--src/core/SkRecords.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/SkRecords.h b/src/core/SkRecords.h
index d8dfb2b937..ed5eaf3491 100644
--- a/src/core/SkRecords.h
+++ b/src/core/SkRecords.h
@@ -30,8 +30,6 @@ namespace SkRecords {
M(Restore) \
M(Save) \
M(SaveLayer) \
- M(PushCull) \
- M(PopCull) \
M(SetMatrix) \
M(ClipPath) \
M(ClipRRect) \
@@ -225,9 +223,6 @@ RECORD2(Restore, SkIRect, devBounds, TypedMatrix, matrix);
RECORD0(Save);
RECORD3(SaveLayer, Optional<SkRect>, bounds, Optional<SkPaint>, paint, SkCanvas::SaveFlags, flags);
-RECORD1(PushCull, SkRect, rect);
-RECORD0(PopCull);
-
RECORD1(SetMatrix, TypedMatrix, matrix);
struct RegionOpAndAA {