| 790 | } |
| 791 | |
| 792 | void NvFlexExtDestroyAsset(NvFlexExtAsset* asset) |
| 793 | { |
| 794 | delete[] asset->particles; |
| 795 | delete[] asset->springIndices; |
| 796 | delete[] asset->springCoefficients; |
| 797 | delete[] asset->springRestLengths; |
| 798 | delete[] asset->triangleIndices; |
| 799 | delete[] asset->shapeIndices; |
| 800 | delete[] asset->shapeOffsets; |
| 801 | delete[] asset->shapeCenters; |
| 802 | delete[] asset->shapeCoefficients; |
| 803 | |
| 804 | delete asset; |
| 805 | } |
| 806 | |
| 807 |
no outgoing calls
no test coverage detected