mirror of https://github.com/axmolengine/axmol.git
Committing genbindings changes
This commit is contained in:
parent
dcc79a8ade
commit
6856c2d073
|
@ -102537,40 +102537,6 @@ int lua_register_ax_base_Application(lua_State* tolua_S)
|
|||
return 1;
|
||||
}
|
||||
|
||||
int lua_ax_base_GLViewImpl_loadGLES2(lua_State* tolua_S)
|
||||
{
|
||||
int argc = 0;
|
||||
bool ok = true;
|
||||
|
||||
#if _AX_DEBUG >= 1
|
||||
tolua_Error tolua_err;
|
||||
#endif
|
||||
|
||||
#if _AX_DEBUG >= 1
|
||||
if (!tolua_isusertable(tolua_S,1,"ax.GLViewImpl",0,&tolua_err)) goto tolua_lerror;
|
||||
#endif
|
||||
|
||||
argc = lua_gettop(tolua_S) - 1;
|
||||
|
||||
if (argc == 0)
|
||||
{
|
||||
if(!ok)
|
||||
{
|
||||
tolua_error(tolua_S,"invalid arguments in function 'lua_ax_base_GLViewImpl_loadGLES2'", nullptr);
|
||||
return 0;
|
||||
}
|
||||
ax::GLViewImpl::loadGLES2();
|
||||
lua_settop(tolua_S, 1);
|
||||
return 1;
|
||||
}
|
||||
luaL_error(tolua_S, "%s has wrong number of arguments: %d, was expecting %d\n ", "ax.GLViewImpl:loadGLES2",argc, 0);
|
||||
return 0;
|
||||
#if _AX_DEBUG >= 1
|
||||
tolua_lerror:
|
||||
tolua_error(tolua_S,"#ferror in function 'lua_ax_base_GLViewImpl_loadGLES2'.",&tolua_err);
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
int lua_ax_base_GLViewImpl_create(lua_State* tolua_S)
|
||||
{
|
||||
int argc = 0;
|
||||
|
@ -102729,7 +102695,6 @@ int lua_register_ax_base_GLViewImpl(lua_State* tolua_S)
|
|||
tolua_cclass(tolua_S,"GLViewImpl","ax.GLViewImpl","ax.GLView",nullptr);
|
||||
|
||||
tolua_beginmodule(tolua_S,"GLViewImpl");
|
||||
tolua_function(tolua_S,"loadGLES2", lua_ax_base_GLViewImpl_loadGLES2);
|
||||
tolua_function(tolua_S,"create", lua_ax_base_GLViewImpl_create);
|
||||
tolua_function(tolua_S,"createWithRect", lua_ax_base_GLViewImpl_createWithRect);
|
||||
tolua_function(tolua_S,"createWithFullScreen", lua_ax_base_GLViewImpl_createWithFullScreen);
|
||||
|
|
|
@ -2420,7 +2420,6 @@ int register_all_ax_base(lua_State* tolua_S);
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#endif // __ax_base_h__
|
||||
|
|
Loading…
Reference in New Issue