| 81 | } |
| 82 | |
| 83 | void postParseCommandLine() override |
| 84 | { |
| 85 | /* load default scene if none specified */ |
| 86 | if (scene_empty_post_parse()) { |
| 87 | FileName file = FileName::executableFolder() + FileName("models/cornell_box.ecs"); |
| 88 | parseCommandLine(new ParseStream(new LineCommentFilter(file, "#")), file.path()); |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | #if defined(USE_GLFW) |
| 93 |
nothing calls this directly
no test coverage detected