mirror of
https://github.com/thisistherk/fast_obj.git
synced 2025-04-04 13:05:02 +00:00
re-added mesh normal initialization that was accidently removed)
This commit is contained in:
parent
27803406d7
commit
cd5be148c3
1 changed files with 2 additions and 0 deletions
|
@ -651,6 +651,7 @@ const char* parse_vertex(fastObjData* data, const char* ptr)
|
|||
unsigned int ii;
|
||||
float v;
|
||||
|
||||
|
||||
for (ii = 0; ii < 3; ii++)
|
||||
{
|
||||
ptr = parse_float(ptr, &v);
|
||||
|
@ -1428,6 +1429,7 @@ fastObjMesh* fast_obj_read_with_callbacks(const char* path, const fastObjCallbac
|
|||
|
||||
m->positions = 0;
|
||||
m->texcoords = 0;
|
||||
m->normals = 0;
|
||||
m->colors = 0;
|
||||
m->face_vertices = 0;
|
||||
m->face_materials = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue