| 569 | |
| 570 | /* called by the C++ code for cleanup */ |
| 571 | extern "C" void device_cleanup () |
| 572 | { |
| 573 | for (unsigned int i = 0; i < 6; ++i) { |
| 574 | if (scene_trees[i]) { |
| 575 | rtcReleaseScene(scene_trees[i]); |
| 576 | } |
| 577 | } |
| 578 | TutorialData_Destructor(&data); |
| 579 | } |
| 580 | |
| 581 | } // namespace embree |
nothing calls this directly
no test coverage detected