| 2176 | } |
| 2177 | |
| 2178 | RTC_API void rtcSetGeometryOccludedFunction (RTCGeometry hgeometry, RTCOccludedFunctionN occluded) |
| 2179 | { |
| 2180 | Geometry* geometry = (Geometry*) hgeometry; |
| 2181 | RTC_CATCH_BEGIN; |
| 2182 | RTC_TRACE(rtcSetOccludedFunctionN); |
| 2183 | RTC_VERIFY_HANDLE(hgeometry); |
| 2184 | geometry->setOccludedFunctionN(occluded); |
| 2185 | RTC_CATCH_END2(geometry); |
| 2186 | } |
| 2187 | |
| 2188 | RTC_API void rtcSetGeometryIntersectFilterFunction (RTCGeometry hgeometry, RTCFilterFunctionN filter) |
| 2189 | { |
no test coverage detected