aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkClipStack.h
diff options
context:
space:
mode:
authorGravatar Mike Reed <reed@google.com>2017-03-08 14:15:50 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-03-08 19:53:01 +0000
commit91b961d33d1d3e78c212be8738c1c7c468c358ca (patch)
tree646b38542121ff5e50f82dc61b367eb316f0798a /src/core/SkClipStack.h
parenta1d9ce5993b8ac4e54a62455e7f02bd7ed3752da (diff)
remove SkClipVisitor
With new device clipping, this is unsupported on SkCanvas BUG=skia: Change-Id: I39443f213be1005b8b9208d604e4bfb31cbda424 Reviewed-on: https://skia-review.googlesource.com/9349 Commit-Queue: Mike Reed <reed@google.com> Reviewed-by: Brian Salomon <bsalomon@google.com> Reviewed-by: Robert Phillips <robertphillips@google.com>
Diffstat (limited to 'src/core/SkClipStack.h')
-rw-r--r--src/core/SkClipStack.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/core/SkClipStack.h b/src/core/SkClipStack.h
index 080712dfe3..c6786e6d05 100644
--- a/src/core/SkClipStack.h
+++ b/src/core/SkClipStack.h
@@ -21,8 +21,6 @@
#include "GrResourceKey.h"
#endif
-class SkCanvasClipVisitor;
-
// 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
@@ -196,11 +194,6 @@ public:
return kPath_Type == fType && fPath.get()->isInverseFillType();
}
- /**
- * Replay this clip into the visitor.
- */
- void replay(SkCanvasClipVisitor*) const;
-
#ifdef SK_DEBUG
/**
* Dumps the element to SkDebugf. This is intended for Skia development debugging