1
0

Rename ModelParser to MeshExtractor

This commit is contained in:
JosiahWI
2023-05-18 07:01:43 -05:00
committed by Josiah VanderZee
parent 0f73c30a1f
commit 3930bd8c85
2 changed files with 22 additions and 21 deletions

View File

@@ -54,11 +54,11 @@ private:
int m_filesize;
};
class ModelParser {
class MeshExtractor {
public:
ModelParser(const tinygltf::Model& model);
MeshExtractor(const tinygltf::Model& model) noexcept;
ModelParser(const tinygltf::Model&& model);
MeshExtractor(const tinygltf::Model&& model) noexcept;
/* Gets indices for the given mesh/primitive.
*
@@ -128,3 +128,4 @@ private:
} // namespace irr
#endif // __C_GLTF_MESH_FILE_LOADER_INCLUDED__