Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(294)

Side by Side Diff: include/utils/SkLua.h

Issue 15737010: add dumpops.lua as a sample scraper that just dumps the arguments (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « gyp/tools.gyp ('k') | src/utils/SkLua.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #ifndef SkLua_DEFINED
9 #define SkLua_DEFINED
10
11 #include "SkColor.h"
12 #include "SkScalar.h"
13
14 struct lua_State;
15
16 class SkCanvas;
17 class SkMatrix;
18 class SkPaint;
19 class SkPath;
20 struct SkRect;
21 class SkRRect;
22 class SkString;
23
24 #define SkScalarToLua(x) SkScalarToDouble(x)
25 #define SkLuaToScalar(x) SkDoubleToScalar(x)
26
27 class SkLua {
28 public:
29 static void Load(lua_State*);
30
31 SkLua(lua_State*);
32 ~SkLua();
33
34 lua_State* getL() const { return fL; }
35
36 void pushBool(bool, const char tableKey[] = NULL);
37 void pushString(const char[], const char tableKey[] = NULL);
38 void pushString(const SkString&, const char tableKey[] = NULL);
39 void pushColor(SkColor, const char tableKey[] = NULL);
40 void pushScalar(SkScalar, const char tableKey[] = NULL);
41 void pushRect(const SkRect&, const char tableKey[] = NULL);
42 void pushRRect(const SkRRect&, const char tableKey[] = NULL);
43 void pushMatrix(const SkMatrix&, const char tableKey[] = NULL);
44 void pushPaint(const SkPaint&, const char tableKey[] = NULL);
45 void pushPath(const SkPath&, const char tableKey[] = NULL);
46 void pushCanvas(SkCanvas*, const char tableKey[] = NULL);
47
48 private:
49 lua_State* fL;
50 };
51
52 #endif
OLDNEW
« no previous file with comments | « gyp/tools.gyp ('k') | src/utils/SkLua.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698