| 1197 | return 0; |
| 1198 | } |
| 1199 | static int EndScene(lua_State* L)LNOEXCEPT |
| 1200 | { |
| 1201 | if (!LAPP.EndScene()) |
| 1202 | return luaL_error(L, "can't invoke 'EndScene'."); |
| 1203 | return 0; |
| 1204 | } |
| 1205 | static int RenderClear(lua_State* L)LNOEXCEPT |
| 1206 | { |
| 1207 | fcyColor* c = static_cast<fcyColor*>(luaL_checkudata(L, 1, TYPENAME_COLOR)); |
nothing calls this directly
no outgoing calls
no test coverage detected