| 88 | // Parameter helpers //////////////////////////////////////////////////////// |
| 89 | |
| 90 | void ospSetString(OSPObject o, const char *id, const char *s) |
| 91 | { |
| 92 | ospSetParam(o, id, OSP_STRING, &s); |
| 93 | } |
| 94 | |
| 95 | void ospSetObject(OSPObject o, const char *id, OSPObject other) |
| 96 | { |
nothing calls this directly
no test coverage detected