aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/utils/SkLua.h
diff options
context:
space:
mode:
authorGravatar Mike Reed <reed@google.com>2017-01-19 14:34:51 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-01-19 20:07:03 +0000
commit4f364fd951eac36adbc1c8719f3e7c42974dfad1 (patch)
treef30c99f57317cc52312ab5740eecbbdf9e70637a /include/utils/SkLua.h
parent1baaacac74d24604e3dfca9857fbd647df375997 (diff)
remove clipstack from lua -- deprecated
BUG=skia: Change-Id: I7974b5921aeeabc9c58fdf76731d80b8f0702a70 Reviewed-on: https://skia-review.googlesource.com/7309 Commit-Queue: Mike Reed <reed@google.com> Reviewed-by: Mike Reed <reed@google.com>
Diffstat (limited to 'include/utils/SkLua.h')
-rw-r--r--include/utils/SkLua.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/utils/SkLua.h b/include/utils/SkLua.h
index ad6f996ac3..ea3e166b04 100644
--- a/include/utils/SkLua.h
+++ b/include/utils/SkLua.h
@@ -8,7 +8,6 @@
#ifndef SkLua_DEFINED
#define SkLua_DEFINED
-#include "SkClipStack.h"
#include "SkColor.h"
#include "SkPathEffect.h"
#include "SkScalar.h"
@@ -59,13 +58,8 @@ public:
void pushPaint(const SkPaint&, const char tableKey[] = NULL);
void pushPath(const SkPath&, const char tableKey[] = NULL);
void pushCanvas(SkCanvas*, const char tableKey[] = NULL);
- void pushClipStack(const SkClipStack&, const char tableKey[] = NULL);
- void pushClipStackElement(const SkClipStack::Element& element, const char tableKey[] = NULL);
void pushTextBlob(const SkTextBlob*, const char tableKey[] = NULL);
- // This SkCanvas lua methods is declared here to benefit from SkLua's friendship with SkCanvas.
- static int lcanvas_getReducedClipStack(lua_State* L);
-
private:
lua_State* fL;
SkString fTermCode;