| 1315 | //------------------------------------------------------------------------------ |
| 1316 | |
| 1317 | static boost::python::tuple RenderConfig_LoadResumeFile(const str &fileNameStr) { |
| 1318 | const string fileName = extract<string>(fileNameStr); |
| 1319 | luxcore::detail::RenderStateImpl *startState; |
| 1320 | luxcore::detail::FilmImpl *startFilm; |
| 1321 | luxcore::detail::RenderConfigImpl *config = new luxcore::detail::RenderConfigImpl(fileName, &startState, &startFilm); |
| 1322 | |
| 1323 | return boost::python::make_tuple(TransferToPython(config), TransferToPython(startState), TransferToPython(startFilm)); |
| 1324 | } |
| 1325 | |
| 1326 | static luxcore::detail::RenderConfigImpl *RenderConfig_LoadFile(const str &fileNameStr) { |
| 1327 | const string fileName = extract<string>(fileNameStr); |
nothing calls this directly
no test coverage detected