绘图函数
| 1191 | |
| 1192 | // 绘图函数 |
| 1193 | static int BeginScene(lua_State* L)LNOEXCEPT |
| 1194 | { |
| 1195 | if (!LAPP.BeginScene()) |
| 1196 | return luaL_error(L, "can't invoke 'BeginScene'."); |
| 1197 | return 0; |
| 1198 | } |
| 1199 | static int EndScene(lua_State* L)LNOEXCEPT |
| 1200 | { |
| 1201 | if (!LAPP.EndScene()) |
nothing calls this directly
no outgoing calls
no test coverage detected