| 2036 | } |
| 2037 | |
| 2038 | RTC_API void rtcSetGeometryTessellationRate (RTCGeometry hgeometry, float tessellationRate) |
| 2039 | { |
| 2040 | Geometry* geometry = (Geometry*) hgeometry; |
| 2041 | RTC_CATCH_BEGIN; |
| 2042 | RTC_TRACE(rtcSetGeometryTessellationRate); |
| 2043 | RTC_VERIFY_HANDLE(hgeometry); |
| 2044 | geometry->setTessellationRate(tessellationRate); |
| 2045 | RTC_CATCH_END2(geometry); |
| 2046 | } |
| 2047 | |
| 2048 | RTC_API void rtcSetGeometryUserData (RTCGeometry hgeometry, void* ptr) |
| 2049 | { |
no test coverage detected