| 16 | */ |
| 17 | |
| 18 | std::vector<TexturedVertex> LoadObjModel(const std::string& filename) |
| 19 | { |
| 20 | std::vector<TexturedVertex> vertices; |
| 21 | LoadObjModel(vertices, filename); |
| 22 | return vertices; |
| 23 | } |
| 24 | |
| 25 | TriangleMesh LoadObjModel(std::vector<TexturedVertex>& vertices, const std::string& filename) |
| 26 | { |
no test coverage detected