| 1995 | } |
| 1996 | |
| 1997 | RTC_API void* rtcGetGeometryBufferDataDevice(RTCGeometry hgeometry, RTCBufferType type, unsigned int slot) |
| 1998 | { |
| 1999 | Geometry* geometry = (Geometry*) hgeometry; |
| 2000 | RTC_CATCH_BEGIN; |
| 2001 | RTC_TRACE(rtcGetGeometryBufferDataDevice); |
| 2002 | RTC_VERIFY_HANDLE(hgeometry); |
| 2003 | return geometry->getBufferData(type, slot, BufferDataPointerType::DEVICE); |
| 2004 | RTC_CATCH_END2(geometry); |
| 2005 | return nullptr; |
| 2006 | } |
| 2007 | |
| 2008 | RTC_API void rtcEnableGeometry (RTCGeometry hgeometry) |
| 2009 | { |
nothing calls this directly
no test coverage detected