diff options
author | commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2014-02-24 18:59:48 +0000 |
---|---|---|
committer | commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2014-02-24 18:59:48 +0000 |
commit | 5cc25359c62c83c356c3a30572a05ac9647daa55 (patch) | |
tree | f99d036c57170796a58cc288c662cc596968db4b /include | |
parent | d5f032d46baa42f836d06d7372fba8f022a20dfa (diff) |
Add getClipStack method to lua SkCanvas
R=reed@google.com
Author: bsalomon@google.com
Review URL: https://codereview.chromium.org/177933003
git-svn-id: http://skia.googlecode.com/svn/trunk@13567 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include')
-rw-r--r-- | include/utils/SkLua.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/utils/SkLua.h b/include/utils/SkLua.h index c6097464ef..f67502a2e8 100644 --- a/include/utils/SkLua.h +++ b/include/utils/SkLua.h @@ -15,6 +15,7 @@ struct lua_State; class SkCanvas; +class SkClipStack; class SkMatrix; class SkPaint; class SkPath; @@ -53,6 +54,7 @@ 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); private: lua_State* fL; |