| 20 | */ |
| 21 | |
| 22 | std::vector<TexturedVertex> LoadObjModel(const std::string& filename) |
| 23 | { |
| 24 | std::vector<TexturedVertex> vertices; |
| 25 | LoadObjModel(vertices, filename); |
| 26 | return vertices; |
| 27 | } |
| 28 | |
| 29 | TriangleMesh LoadObjModel(std::vector<TexturedVertex>& vertices, const std::string& filename, unsigned verticesPerFace) |
| 30 | { |
no test coverage detected