# HG changeset patch # User John Tsiombikas # Date 1346724647 -10800 # Node ID d0896caa3e5b3ff55c63875f56418e05eee7c556 # Parent 5562a637e5aaa22280b10e7e880fd98494795225 GenNormals -> GenSmoothNormals diff -r 5562a637e5aa -r d0896caa3e5b src/scene.c --- a/src/scene.c Mon Jan 23 08:51:59 2012 +0200 +++ b/src/scene.c Tue Sep 04 05:10:47 2012 +0300 @@ -36,7 +36,7 @@ const struct aiScene *aiscn; unsigned int proc_flags = aiProcess_JoinIdenticalVertices | aiProcess_PreTransformVertices | aiProcess_Triangulate | - aiProcess_GenNormals | aiProcess_SortByPType | aiProcess_FlipUVs; + aiProcess_GenSmoothNormals | aiProcess_SortByPType | aiProcess_FlipUVs; if(!(aiscn = aiImportFile(fname, proc_flags))) { fprintf(stderr, "failed to load: %s\n", fname);