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

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

Issue 267423006: Add asADash to Lua for scraping (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | 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
1 /* 1 /*
2 * Copyright 2013 Google Inc. 2 * Copyright 2013 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SkLua_DEFINED 8 #ifndef SkLua_DEFINED
9 #define SkLua_DEFINED 9 #define SkLua_DEFINED
10 10
11 #include "SkClipStack.h" 11 #include "SkClipStack.h"
12 #include "SkColor.h" 12 #include "SkColor.h"
13 #include "SkPathEffect.h"
13 #include "SkScalar.h" 14 #include "SkScalar.h"
14 #include "SkString.h" 15 #include "SkString.h"
15 16
16 struct lua_State; 17 struct lua_State;
17 18
18 class SkCanvas; 19 class SkCanvas;
19 class SkMatrix; 20 class SkMatrix;
20 class SkPaint; 21 class SkPaint;
21 class SkPath; 22 class SkPath;
22 struct SkRect; 23 struct SkRect;
(...skipping 16 matching lines...) Expand all
39 40
40 bool runCode(const char code[]); 41 bool runCode(const char code[]);
41 bool runCode(const void* code, size_t size); 42 bool runCode(const void* code, size_t size);
42 43
43 void pushBool(bool, const char tableKey[] = NULL); 44 void pushBool(bool, const char tableKey[] = NULL);
44 void pushString(const char[], const char tableKey[] = NULL); 45 void pushString(const char[], const char tableKey[] = NULL);
45 void pushString(const char[], size_t len, const char tableKey[] = NULL); 46 void pushString(const char[], size_t len, const char tableKey[] = NULL);
46 void pushString(const SkString&, const char tableKey[] = NULL); 47 void pushString(const SkString&, const char tableKey[] = NULL);
47 void pushArrayU16(const uint16_t[], int count, const char tableKey[] = NULL) ; 48 void pushArrayU16(const uint16_t[], int count, const char tableKey[] = NULL) ;
48 void pushArrayPoint(const SkPoint[], int count, const char key[] = NULL); 49 void pushArrayPoint(const SkPoint[], int count, const char key[] = NULL);
50 void pushArrayScalar(const SkScalar[], int count, const char key[] = NULL);
49 void pushColor(SkColor, const char tableKey[] = NULL); 51 void pushColor(SkColor, const char tableKey[] = NULL);
50 void pushU32(uint32_t, const char tableKey[] = NULL); 52 void pushU32(uint32_t, const char tableKey[] = NULL);
51 void pushScalar(SkScalar, const char tableKey[] = NULL); 53 void pushScalar(SkScalar, const char tableKey[] = NULL);
52 void pushRect(const SkRect&, const char tableKey[] = NULL); 54 void pushRect(const SkRect&, const char tableKey[] = NULL);
53 void pushRRect(const SkRRect&, const char tableKey[] = NULL); 55 void pushRRect(const SkRRect&, const char tableKey[] = NULL);
56 void pushDash(const SkPathEffect::DashInfo&, const char tableKey[] = NULL);
54 void pushMatrix(const SkMatrix&, const char tableKey[] = NULL); 57 void pushMatrix(const SkMatrix&, const char tableKey[] = NULL);
55 void pushPaint(const SkPaint&, const char tableKey[] = NULL); 58 void pushPaint(const SkPaint&, const char tableKey[] = NULL);
56 void pushPath(const SkPath&, const char tableKey[] = NULL); 59 void pushPath(const SkPath&, const char tableKey[] = NULL);
57 void pushCanvas(SkCanvas*, const char tableKey[] = NULL); 60 void pushCanvas(SkCanvas*, const char tableKey[] = NULL);
58 void pushClipStack(const SkClipStack&, const char tableKey[] = NULL); 61 void pushClipStack(const SkClipStack&, const char tableKey[] = NULL);
59 void pushClipStackElement(const SkClipStack::Element& element, const char ta bleKey[] = NULL); 62 void pushClipStackElement(const SkClipStack::Element& element, const char ta bleKey[] = NULL);
60 63
61 // This SkCanvas lua methods is declared here to benefit from SkLua's friend ship with SkCanvas. 64 // This SkCanvas lua methods is declared here to benefit from SkLua's friend ship with SkCanvas.
62 static int lcanvas_getReducedClipStack(lua_State* L); 65 static int lcanvas_getReducedClipStack(lua_State* L);
63 66
64 private: 67 private:
65 lua_State* fL; 68 lua_State* fL;
66 SkString fTermCode; 69 SkString fTermCode;
67 bool fWeOwnL; 70 bool fWeOwnL;
68 }; 71 };
69 72
70 #endif 73 #endif
OLDNEW
« no previous file with comments | « no previous file | src/utils/SkLua.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698