Report error message.

This commit is contained in:
Syoyo Fujita 2017-12-19 18:45:22 +09:00
parent 85591954ab
commit b66d68f3fb

View File

@ -20,6 +20,7 @@ static std::string GetFilePathExtension(const std::string &FileName) {
bool LoadGLTF(const std::string &filename, float scale, std::vector<Mesh<float> > *meshes, std::vector<Material> *materials, std::vector<Texture> *textures)
{
// TODO(syoyo): Implement
// TODO(syoyo): Texture
// TODO(syoyo): Material
@ -45,7 +46,8 @@ bool LoadGLTF(const std::string &filename, float scale, std::vector<Mesh<float>
return false;
}
return true;
std::cerr << "LoadGLTF() function is not yet implemented!" << std::endl;
return false;
}
} // namespace example