| 1763 | } |
| 1764 | |
| 1765 | RTC_API void rtcSetGeometryVertexAttributeCount(RTCGeometry hgeometry, unsigned int N) |
| 1766 | { |
| 1767 | Geometry* geometry = (Geometry*) hgeometry; |
| 1768 | RTC_CATCH_BEGIN; |
| 1769 | RTC_TRACE(rtcSetGeometryVertexAttributeCount); |
| 1770 | RTC_VERIFY_HANDLE(hgeometry); |
| 1771 | geometry->setVertexAttributeCount(N); |
| 1772 | RTC_CATCH_END2(geometry); |
| 1773 | } |
| 1774 | |
| 1775 | RTC_API void rtcSetGeometryTopologyCount(RTCGeometry hgeometry, unsigned int N) |
| 1776 | { |
no test coverage detected