diff options
Diffstat (limited to 'src/script/graphics')
-rw-r--r-- | src/script/graphics/luaopen_JSL.cpp | 1 | ||||
-rw-r--r-- | src/script/graphics/luaopen_Tilemap.cpp | 9 | ||||
-rw-r--r-- | src/script/graphics/luaopen_graphics.cpp | 7 |
3 files changed, 1 insertions, 16 deletions
diff --git a/src/script/graphics/luaopen_JSL.cpp b/src/script/graphics/luaopen_JSL.cpp index 919949c..adb109c 100644 --- a/src/script/graphics/luaopen_JSL.cpp +++ b/src/script/graphics/luaopen_JSL.cpp @@ -141,5 +141,6 @@ namespace lua luax_newtype(L, TYPE_JSL, f); return 0; } + } }
\ No newline at end of file diff --git a/src/script/graphics/luaopen_Tilemap.cpp b/src/script/graphics/luaopen_Tilemap.cpp deleted file mode 100644 index 983193e..0000000 --- a/src/script/graphics/luaopen_Tilemap.cpp +++ /dev/null @@ -1,9 +0,0 @@ -namespace jin -{ -namespace lua -{ - - - -} -} diff --git a/src/script/graphics/luaopen_graphics.cpp b/src/script/graphics/luaopen_graphics.cpp index 50b1921..6e78e36 100644 --- a/src/script/graphics/luaopen_graphics.cpp +++ b/src/script/graphics/luaopen_graphics.cpp @@ -19,11 +19,8 @@ namespace lua static struct { color curRenderColor; - Font* curFont = 0; - Font* defaultFont = 0; - } context; /** @@ -40,10 +37,6 @@ namespace lua setting.vsync = luax_getfield_bool(L, 1, "vsync"); wnd->init(setting); - // set default blend method - glEnable(GL_BLEND); - glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); - // init success luax_pushboolean(L, true); return 1; |