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:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-02-21 21:27:33 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-02-21 21:27:33 +0400
commit3663bd580f886cb0f125e0dc08e247c4b763d966 (patch)
treef451cae4d3128f208aaaa06f11859c50c9bedd23
parent9064978d0bcd3684d48d3b64d41e650467d27e01 (diff)
Remove debug print code.
It was harmless because it ifdef-ed, but it's likelly not needed anymore.
-rw-r--r--source/blender/bmesh/intern/bmesh_interp.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/source/blender/bmesh/intern/bmesh_interp.c b/source/blender/bmesh/intern/bmesh_interp.c
index dd51bbbd85f..060ec8753c9 100644
--- a/source/blender/bmesh/intern/bmesh_interp.c
+++ b/source/blender/bmesh/intern/bmesh_interp.c
@@ -629,33 +629,8 @@ void BM_face_multires_bounds_smooth(BMesh *bm, BMFace *f)
}
}
-#if 0
-static void print_loop(BMLoop *loop)
-{
- BMLoop *cur = loop;
- do {
- print_v3("\t\tco", cur->v->co);
- } while ((cur = cur->next) != loop);
-}
-#endif
-
void BM_loop_interp_multires(BMesh *bm, BMLoop *target, BMFace *source)
{
-#if 0
- {
- static int count = 0;
- count++;
- printf("%s: counter=%d\n", __func__, count);
- printf("\ttarget=%p:\n", target);
- print_loop(target);
- printf("\tsource=%p:\n", source);
- print_loop(source->l_first);
- /*if(count!=5) {
- return;
- }*/
- }
-#endif
-
bmesh_loop_interp_mdisps(bm, target, source);
}