| 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)); |
| 1208 | LAPP.ClearScreen(*c); |
| 1209 | return 0; |
| 1210 | } |
| 1211 | static int SetViewport(lua_State* L)LNOEXCEPT |
| 1212 | { |
| 1213 | if (!LAPP.SetViewport( |
nothing calls this directly
no test coverage detected