| 114 | //============================================================================// |
| 115 | |
| 116 | const LuaGLQuery* LuaGLQueryMgr::TestLuaGLQuery(lua_State* L, int index) { |
| 117 | if (lua_getuserdataextra(L, index) != metaName) { |
| 118 | return NULL; |
| 119 | } |
| 120 | return (LuaGLQuery*)lua_touserdata(L, index); |
| 121 | } |
| 122 | |
| 123 | |
| 124 | const LuaGLQuery* LuaGLQueryMgr::CheckLuaGLQuery(lua_State* L, int index) { |
nothing calls this directly
no test coverage detected