| 141 | }; |
| 142 | |
| 143 | void pythonLaunch( const MR::Viewer::LaunchParams& params, const MinimalViewerSetup& setup ) |
| 144 | { |
| 145 | std::thread launchThread { [=] |
| 146 | { |
| 147 | MR::SetCurrentThreadName( "PythonAppLaunchThread" ); |
| 148 | MR::launchDefaultViewer( params, setup ); |
| 149 | } }; |
| 150 | launchThread.detach(); |
| 151 | } |
| 152 | |
| 153 | } // namespace |
| 154 |
nothing calls this directly
no test coverage detected