mirror of
https://github.com/thisistherk/fast_obj.git
synced 2025-04-04 13:05:02 +00:00
Fast C OBJ parser
When an array reached a size that would require >4GB allocation, the argument to realloc would overflow during multiplication, resulting in a very small allocation and a subsequent out of bounds access. This change fixes that and also adjusts capacity calculation so that it doesn't overflow 32-bit range until it's basically impossible not to. This is not perfect - in particular, on 32-bit systems there's a risk of size_t overflow that remains, however because we grow in 1.5x increments, realistically an attempt to grow a 2GB allocation to the next increment would fail before that. We can also technically overflow capacity even after the adjustment, but that requires 3+B elements which effectively means an .obj file on the scale of hundreds of gigabytes, at which point maybe a streaming parser would be more practical. |
||
---|---|---|
test | ||
.gitignore | ||
CMakeLists.txt | ||
fast_obj.c | ||
fast_obj.h | ||
LICENSE | ||
README.md |
fast_obj
Because the world needs another OBJ loader. Single header library, should compile without warnings in both C89 or C++. Much faster (5-10x) than other libraries tested.
To use:
fastObjMesh* mesh = fast_obj_read("path/to/objfile.obj");
...do stuff with mesh...
fast_obj_destroy(mesh);
Note that valid indices in the fastObjMesh::indices
array start from 1
. A dummy position, normal and
texture coordinate are added to the corresponding fastObjMesh
arrays at element 0
and then an index
of 0
is used to indicate that attribute is not present at the vertex. This means that users can avoid
the need to test for non-present data if required as the vertices will still reference a valid entry in
the mesh arrays.
A simple test app is provided to compare speed against tinyobjloader and check output matches.