| 623 | } |
| 624 | |
| 625 | int64_t TutorialApplication::getNumRays() |
| 626 | { |
| 627 | int64_t numRays = 0; |
| 628 | for (size_t i = 0; i < TaskScheduler::threadCount(); i++) |
| 629 | numRays += g_stats[i].numRays; |
| 630 | return numRays; |
| 631 | } |
| 632 | |
| 633 | void TutorialApplication::renderToFile(const FileName& fileName) |
| 634 | { |
no outgoing calls
no test coverage detected