| 8 | |
| 9 | namespace stratus { |
| 10 | ApplicationThread::ApplicationThread() |
| 11 | // Don't create a new thread context - use current to prevent issues with UI |
| 12 | : thread_(new Thread("Renderer", false)) {} |
| 13 | |
| 14 | ApplicationThread::~ApplicationThread() { |
| 15 | thread_.reset(); |
nothing calls this directly
no outgoing calls
no test coverage detected