| 515 | /////////////////////////////////////////////////////////////////////////////// |
| 516 | |
| 517 | extern "C" void ospSetParam(OSPObject _object, |
| 518 | const char *id, |
| 519 | OSPDataType type, |
| 520 | const void *mem) OSPRAY_CATCH_BEGIN |
| 521 | { |
| 522 | THROW_IF_NULL_OBJECT(_object); |
| 523 | THROW_IF_NULL_STRING(id); |
| 524 | ASSERT_DEVICE(); |
| 525 | currentDevice().setObjectParam(_object, id, type, mem); |
| 526 | } |
| 527 | OSPRAY_CATCH_END() |
| 528 | |
| 529 | extern "C" void ospRemoveParam( |
no test coverage detected