| 31 | } |
| 32 | |
| 33 | inline void TutorialData_Destructor(TutorialData* This) |
| 34 | { |
| 35 | rtcReleaseScene (This->scene); This->scene = nullptr; |
| 36 | alignedFree(This->points); This->points = nullptr; |
| 37 | alignedFree(This->points_tmp); This->points_tmp = nullptr; |
| 38 | alignedFree(This->colors); This->colors = nullptr; |
| 39 | } |
| 40 | |
| 41 | } // namespace embree |
no test coverage detected