| 100 | // *********************************************************************** |
| 101 | |
| 102 | int LuaSetCullMode(lua_State* pLua) { |
| 103 | sg_cull_mode m = (sg_cull_mode)luaL_checknumber(pLua, 1); |
| 104 | SetCullMode(m); |
| 105 | return 0; |
| 106 | } |
| 107 | |
| 108 | // *********************************************************************** |
| 109 |
nothing calls this directly
no test coverage detected