aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkClipStack.h
diff options
context:
space:
mode:
authorGravatar Mike Reed <reed@google.com>2017-04-13 11:06:30 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-04-13 15:42:09 +0000
commit1335a0561e28b97ff4347129c7cc3fdcbf952eb5 (patch)
tree7c5447b5e2e83c23ca481bb24649d5db178d6201 /src/core/SkClipStack.h
parent0a4b4100c12844f49f0656e6a3e382e98d906e5f (diff)
remove dead code around replayClips
Bug: skia: Change-Id: I208bf41846265524d86f65de660311199fefc158 Reviewed-on: https://skia-review.googlesource.com/13338 Reviewed-by: Mike Reed <reed@google.com> Commit-Queue: Mike Reed <reed@google.com>
Diffstat (limited to 'src/core/SkClipStack.h')
-rw-r--r--src/core/SkClipStack.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/core/SkClipStack.h b/src/core/SkClipStack.h
index bd197e35fa..98cec07af6 100644
--- a/src/core/SkClipStack.h
+++ b/src/core/SkClipStack.h
@@ -21,10 +21,6 @@
#include "GrResourceKey.h"
#endif
-#ifdef SK_SUPPORT_OBSOLETE_REPLAYCLIP
-class SkCanvasClipVisitor;
-#endif
-
// Because a single save/restore state can have multiple clips, this class
// stores the stack depth (fSaveCount) and clips (fDeque) separately.
// Each clip in fDeque stores the stack state to which it belongs
@@ -198,13 +194,6 @@ public:
return kPath_Type == fType && fPath.get()->isInverseFillType();
}
-#ifdef SK_SUPPORT_OBSOLETE_REPLAYCLIP
- /**
- * Replay this clip into the visitor.
- */
- void replay(SkCanvasClipVisitor*) const;
-#endif
-
#ifdef SK_DEBUG
/**
* Dumps the element to SkDebugf. This is intended for Skia development debugging