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:
authorJoseph Eagar <joeedh@gmail.com>2009-09-05 10:10:30 +0400
committerJoseph Eagar <joeedh@gmail.com>2009-09-05 10:10:30 +0400
commit971155b3733f56ebf3aedddc65a6110a5b1229ae (patch)
tree635396624de576ba2bd715b1b94bb729316ffbcb /source/blender/editors/mesh
parentbc0a071c29868f4e0cffdec663bb5bc2bbd2c40f (diff)
part one of profiling/optimizing. made cddm not update tesselations itself in cddm_from_mesh. also made BMO_Test/Set/ClearFlag into macros, and tweaked the way normals are calculated.
Diffstat (limited to 'source/blender/editors/mesh')
-rw-r--r--source/blender/editors/mesh/bmeshutils.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/source/blender/editors/mesh/bmeshutils.c b/source/blender/editors/mesh/bmeshutils.c
index 667e55c6c1a..099dbd86e0e 100644
--- a/source/blender/editors/mesh/bmeshutils.c
+++ b/source/blender/editors/mesh/bmeshutils.c
@@ -257,14 +257,6 @@ void EDBM_LoadEditBMesh(Scene *scene, Object *ob)
BMesh *bm = me->edit_btmesh->bm;
BMO_CallOpf(bm, "object_load_bmesh scene=%p object=%p", scene, ob);
-
-#if 0
- EditMesh *em = bmesh_to_editmesh(me->edit_btmesh->bm);
-
- load_editMesh(scene, ob, em);
- free_editMesh(em);
- MEM_freeN(em);
-#endif
}
void EDBM_FreeEditBMesh(BMEditMesh *tm)