| 374 | |
| 375 | |
| 376 | void Mesh::Shutdown() |
| 377 | { |
| 378 | numVertices = 0; |
| 379 | numIndices = 0; |
| 380 | meshParts.Shutdown(); |
| 381 | vertices = nullptr; |
| 382 | indices = nullptr; |
| 383 | } |
| 384 | |
| 385 | const char* Mesh::InputElementTypeString(InputElementType elemType) |
| 386 | { |
no test coverage detected