| 981 | } |
| 982 | |
| 983 | void GLFWOSPRayWindow::commitOutstandingHandles() |
| 984 | { |
| 985 | auto handles = objectsToCommit.consume(); |
| 986 | if (!handles.empty()) { |
| 987 | for (auto &h : handles) |
| 988 | ospCommit(h); |
| 989 | frame = 0; |
| 990 | framebuffer.resetAccumulation(); |
| 991 | } |
| 992 | } |
| 993 | |
| 994 | void GLFWOSPRayWindow::refreshScene(bool resetCamera) |
| 995 | { |
nothing calls this directly
no test coverage detected