| 1415 | return 0; |
| 1416 | } |
| 1417 | static int PopRenderTarget(lua_State* L)LNOEXCEPT |
| 1418 | { |
| 1419 | if (!LAPP.PopRenderTarget()) |
| 1420 | return luaL_error(L, "pop rendertarget failed."); |
| 1421 | return 0; |
| 1422 | } |
| 1423 | static int PostEffect(lua_State* L)LNOEXCEPT |
| 1424 | { |
| 1425 | const char* texture = luaL_checkstring(L, 1); |
nothing calls this directly
no outgoing calls
no test coverage detected