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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2015-04-11 16:41:10 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-04-11 16:41:10 +0300
commita6421e12915db17d311cd716f34395b3c56859bc (patch)
tree7a9ef09f63af0c31e913a3d80f41f545e27042a7 /source
parentccf44c400c896761c87836a06be24216c366c87b (diff)
BMesh: intersect was using ptr hash for int keys
Diffstat (limited to 'source')
-rw-r--r--source/blender/bmesh/tools/bmesh_intersect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/tools/bmesh_intersect.c b/source/blender/bmesh/tools/bmesh_intersect.c
index 064dbd7405b..6c0fa4a37c0 100644
--- a/source/blender/bmesh/tools/bmesh_intersect.c
+++ b/source/blender/bmesh/tools/bmesh_intersect.c
@@ -804,7 +804,7 @@ bool BM_mesh_intersect(
s.edgetri_cache = BLI_ghash_new(BLI_ghashutil_inthash_v4_p, BLI_ghashutil_inthash_v4_cmp, __func__);
s.edge_verts = BLI_ghash_ptr_new(__func__);
- s.face_edges = BLI_ghash_ptr_new(__func__);
+ s.face_edges = BLI_ghash_int_new(__func__);
s.wire_edges = BLI_gset_ptr_new(__func__);
s.vert_dissolve = NULL;