You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For reading GLTF/GLB file system access can be controlled by defining TINYGLTF_NO_FS and providing the necessary callback functions.
Writing GLTF/GLB files seems to be missing this functionality. Even when TINYGLTF_NO_FS is defined, certain functions using std::ofstream are still active (e.g. WriteGltfFile).
Side note: if TINYGLTF_NO_FS is defined, <fstream> is not included. However, it still compiles on most platforms successfully as std::ofstream is pulled in transitively.
The text was updated successfully, but these errors were encountered:
For reading GLTF/GLB file system access can be controlled by defining
TINYGLTF_NO_FS
and providing the necessary callback functions.Writing GLTF/GLB files seems to be missing this functionality. Even when
TINYGLTF_NO_FS
is defined, certain functions usingstd::ofstream
are still active (e.g.WriteGltfFile
).Side note: if
TINYGLTF_NO_FS
is defined,<fstream>
is not included. However, it still compiles on most platforms successfully asstd::ofstream
is pulled in transitively.The text was updated successfully, but these errors were encountered: