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:
authorCampbell Barton <ideasman42@gmail.com>2013-04-19 05:02:58 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-19 05:02:58 +0400
commit34f993241840120c1847410756cb2bf8af1be119 (patch)
tree5af1464868f7ee20b53cc5b4336af5721d004db2 /source/blender/editors/util
parentf2f27bf8325432ec8995f16385c7d65ef975eee1 (diff)
simple optimization, replace BM_face_other_edge_loop() with BM_loop_other_edge_loop() in situations where the loop is known this avoids a lookup.
Diffstat (limited to 'source/blender/editors/util')
-rw-r--r--source/blender/editors/util/crazyspace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/util/crazyspace.c b/source/blender/editors/util/crazyspace.c
index c37d1cc2df4..ea3687ad715 100644
--- a/source/blender/editors/util/crazyspace.c
+++ b/source/blender/editors/util/crazyspace.c
@@ -154,7 +154,7 @@ void crazyspace_set_quats_editmesh(BMEditMesh *em, float *origcos, float *mapped
continue;
BM_ITER_ELEM (l, &liter, v, BM_LOOPS_OF_VERT) {
- BMLoop *l2 = BM_face_other_edge_loop(l->f, l->e, v);
+ BMLoop *l2 = BM_loop_other_edge_loop(l, v);
/* retrieve mapped coordinates */
v1 = mappedcos + 3 * BM_elem_index_get(l->v);