Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2005-03-28 12:17:51 +0400
committerDaniel Dunbar <daniel@zuster.org>2005-03-28 12:17:51 +0400
commit6a8fb8bf6c691428b089f2c6cc12ad41f1295c93 (patch)
tree34c2aa3a5c16f6b92ffdcee90877eddb200e01f6 /source/blender/blenkernel/intern/subsurf.c
parent0c05224a15cfcc7ae1fe2cd2010be95b8820ddf0 (diff)
- added nors to DispListMesh (for face normals)... this is just to
avoid throwing them on later with addnormalsdisplist which is just silly and burdensome. - renamed displist_calc_vert_normals to displist_calc_normals
Diffstat (limited to 'source/blender/blenkernel/intern/subsurf.c')
-rw-r--r--source/blender/blenkernel/intern/subsurf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/subsurf.c b/source/blender/blenkernel/intern/subsurf.c
index aa451928923..84588342f6b 100644
--- a/source/blender/blenkernel/intern/subsurf.c
+++ b/source/blender/blenkernel/intern/subsurf.c
@@ -1067,7 +1067,7 @@ static DispListMesh *hypermesh_to_displistmesh(HyperMesh *hme, short flag) {
mf++;
}
- displistmesh_calc_vert_normals(dlm);
+ displistmesh_calc_normals(dlm);
return dlm;
}