From c7e59fb376453e5abad8c862b52eb0f4c7ba829b Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 12 Nov 2018 22:23:35 +0800 Subject: =?UTF-8?q?*=E4=BF=AE=E6=94=B9=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/lua/modules/graphics/je_lua_bitmap.cpp | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) (limited to 'src/lua/modules/graphics/je_lua_bitmap.cpp') diff --git a/src/lua/modules/graphics/je_lua_bitmap.cpp b/src/lua/modules/graphics/je_lua_bitmap.cpp index 2a35ed5..1491bee 100644 --- a/src/lua/modules/graphics/je_lua_bitmap.cpp +++ b/src/lua/modules/graphics/je_lua_bitmap.cpp @@ -91,20 +91,19 @@ namespace JinEngine proxy->bind(new Shared(b, JIN_GRAPHICS_BITMAP)); return 1; } - - LUA_IMPLEMENT const luaL_Reg f[] = { - { "__gc", l_gc }, - { "getWidth", l_getWidth }, - { "getHeight", l_getHeight }, - { "getSize", l_getSize }, - { "getPixel", l_getPixel }, - { "setPixel", l_setPixel }, - { "clone", l_clone }, - { 0, 0 } - }; - + LUA_EXPORT int luaopen_Bitmap(lua_State* L) { + luaL_Reg f[] = { + { "__gc", l_gc }, + { "getWidth", l_getWidth }, + { "getHeight", l_getHeight }, + { "getSize", l_getSize }, + { "getPixel", l_getPixel }, + { "setPixel", l_setPixel }, + { "clone", l_clone }, + { 0, 0 } + }; luax_newtype(L, JIN_GRAPHICS_BITMAP, f); return 0; } -- cgit v1.1-26-g67d0