| 81 | // *********************************************************************** |
| 82 | |
| 83 | int LuaTexCoord(lua_State* pLua) { |
| 84 | f32 u = (f32)luaL_checknumber(pLua, 1); |
| 85 | f32 v = (f32)luaL_checknumber(pLua, 2); |
| 86 | TexCoord(Vec2f(u, v)); |
| 87 | return 0; |
| 88 | } |
| 89 | |
| 90 | // *********************************************************************** |
| 91 |
nothing calls this directly
no test coverage detected