| 1984 | } |
| 1985 | |
| 1986 | RTC_API void* rtcGetGeometryBufferData(RTCGeometry hgeometry, RTCBufferType type, unsigned int slot) |
| 1987 | { |
| 1988 | Geometry* geometry = (Geometry*) hgeometry; |
| 1989 | RTC_CATCH_BEGIN; |
| 1990 | RTC_TRACE(rtcGetGeometryBufferData); |
| 1991 | RTC_VERIFY_HANDLE(hgeometry); |
| 1992 | return geometry->getBufferData(type, slot, BufferDataPointerType::HOST); |
| 1993 | RTC_CATCH_END2(geometry); |
| 1994 | return nullptr; |
| 1995 | } |
| 1996 | |
| 1997 | RTC_API void* rtcGetGeometryBufferDataDevice(RTCGeometry hgeometry, RTCBufferType type, unsigned int slot) |
| 1998 | { |
no test coverage detected