| 643 | } |
| 644 | |
| 645 | void EngineWorkerGuard::checkForException(ExceptionData const& exceptionData) |
| 646 | { |
| 647 | std::unique_lock<std::mutex> uniqueLock(exceptionData.mutex); |
| 648 | if (exceptionData.errorMessage) { |
| 649 | throw std::runtime_error("GPU worker thread is in an invalid state."); |
| 650 | } |
| 651 | } |
nothing calls this directly
no outgoing calls
no test coverage detected