| 610 | OSPRAY_CATCH_END(nullptr) |
| 611 | |
| 612 | extern "C" void ospUnmapFrameBuffer( |
| 613 | const void *mapped, OSPFrameBuffer fb) OSPRAY_CATCH_BEGIN |
| 614 | { |
| 615 | THROW_IF_NULL_OBJECT(fb); |
| 616 | THROW_IF_NULL(mapped, "pointer"); |
| 617 | ASSERT_DEVICE(); |
| 618 | currentDevice().frameBufferUnmap(mapped, fb); |
| 619 | } |
| 620 | OSPRAY_CATCH_END() |
| 621 | |
| 622 | extern "C" float ospGetVariance(OSPFrameBuffer fb) OSPRAY_CATCH_BEGIN |
no test coverage detected