mirror of
https://github.com/thisistherk/fast_obj.git
synced 2025-04-04 21:15:04 +00:00
Fast C OBJ parser
When string_equal's first argument is a prefix of the second argument but the second argument is longer, the loop goes through all characters of the first string, compares terminating NUL with a different character in the right hand side string, discovers that it's different and leaves the loop - with 'a' having already been incremented. After this the condition proceeds to read from *a which causes a buffer overrun. Fix this by changing the function to something that's obviously correct, even if somewhat less efficient. |
||
---|---|---|
test | ||
.gitignore | ||
CMakeLists.txt | ||
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);
Simple test app to compare speed against tinyobjloader and check output matches.