| 655 | OSPRAY_CATCH_END(nullptr) |
| 656 | |
| 657 | extern "C" OSPFuture ospRenderFrame(OSPFrameBuffer fb, |
| 658 | OSPRenderer renderer, |
| 659 | OSPCamera camera, |
| 660 | OSPWorld world) OSPRAY_CATCH_BEGIN |
| 661 | { |
| 662 | THROW_IF_NULL(fb, "framebuffer"); |
| 663 | THROW_IF_NULL(renderer, "renderer"); |
| 664 | THROW_IF_NULL(camera, "camera"); |
| 665 | THROW_IF_NULL(world, "world"); |
| 666 | |
| 667 | ASSERT_DEVICE(); |
| 668 | return currentDevice().renderFrame(fb, renderer, camera, world); |
| 669 | } |
| 670 | OSPRAY_CATCH_END(nullptr) |
| 671 | |
| 672 | extern "C" int ospIsReady(OSPFuture f, OSPSyncEvent event) OSPRAY_CATCH_BEGIN |
no test coverage detected