| 1469 | return 0; |
| 1470 | } |
| 1471 | static int PostEffectCapture(lua_State* L)LNOEXCEPT |
| 1472 | { |
| 1473 | if (!LAPP.PostEffectCapture()) |
| 1474 | return luaL_error(L, "PostEffectCapture failed."); |
| 1475 | return 0; |
| 1476 | } |
| 1477 | static int PostEffectApply(lua_State* L)LNOEXCEPT |
| 1478 | { |
| 1479 | const char* name = luaL_checkstring(L, 1); |
nothing calls this directly
no outgoing calls
no test coverage detected