Searched defs:SkLua (Results 1 - 2 of 2) sorted by relevance

/external/skia/include/utils/
H A DSkLua.h30 class SkLua { class
34 SkLua(const char termCode[] = NULL); // creates a new L, will close it
35 SkLua(lua_State*); // uses L, will not close it
36 ~SkLua();
66 // This SkCanvas lua methods is declared here to benefit from SkLua's friendship with SkCanvas.
/external/skia/src/utils/
H A DSkLua.cpp8 #include "SkLua.h"
99 SkLua::SkLua(const char termCode[]) : fTermCode(termCode), fWeOwnL(true) { function in class:SkLua
102 SkLua::Load(fL);
105 SkLua::SkLua(lua_State* L) : fL(L), fWeOwnL(false) {} function in class:SkLua
107 SkLua::~SkLua() {
119 bool SkLua::runCode(const char code[]) {
128 bool SkLua
[all...]

Completed in 89 milliseconds