| 473 | RTCScene scene; |
| 474 | |
| 475 | void perform_work(size_t threadID) { |
| 476 | setAffinity(threadID); |
| 477 | while (true) { |
| 478 | barrier.wait(); |
| 479 | if (term) |
| 480 | return; |
| 481 | rtcJoinCommitScene(scene); |
| 482 | barrier.wait(); |
| 483 | } |
| 484 | } |
| 485 | } helper; |
| 486 | |
| 487 | void Benchmark_Static_Create_UserThreads_Legacy(ISPCScene* scene_in, BenchParams& params, RTCBuildQuality quality, RTCBuildQuality qflags) |
nothing calls this directly
no test coverage detected