Committing genbindings changes

This commit is contained in:
halx99 2023-09-11 03:15:48 +00:00 committed by GitHub Actions
parent dcc79a8ade
commit 6856c2d073
2 changed files with 0 additions and 36 deletions

View File

@ -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);

View File

@ -2420,7 +2420,6 @@ int register_all_ax_base(lua_State* tolua_S);
#endif // __ax_base_h__