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>2017-10-20 06:14:44 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-10-20 06:14:44 +0300
commitc45b8a65b4311babc92fd3d794db0ec9248fb316 (patch)
treea59c095aa17a409cd06158a9cc186848e012b896 /source/blender/editors/mesh
parentaa7e76b2e35c6ff6c58ccd4373b68dde8283a3a3 (diff)
parent959a58da9e4d23be2738b6979ec208f05468f50c (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'source/blender/editors/mesh')
-rw-r--r--source/blender/editors/mesh/editmesh_utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/mesh/editmesh_utils.c b/source/blender/editors/mesh/editmesh_utils.c
index f24b7911e34..eb3fea24cc1 100644
--- a/source/blender/editors/mesh/editmesh_utils.c
+++ b/source/blender/editors/mesh/editmesh_utils.c
@@ -584,7 +584,7 @@ UvVertMap *BM_uv_vert_map_create(
}
if (use_winding) {
- winding[a] = cross_poly_v2((const float (*)[2])tf_uv, efa->len) > 0;
+ winding[a] = cross_poly_v2(tf_uv, efa->len) > 0;
}
}
}
@@ -734,7 +734,7 @@ UvElementMap *BM_uv_element_map_create(
}
if (use_winding) {
- winding[j] = cross_poly_v2((const float (*)[2])tf_uv, efa->len) > 0;
+ winding[j] = cross_poly_v2(tf_uv, efa->len) > 0;
}
}
}