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:
authorHans Goudey <h.goudey@me.com>2020-11-17 20:57:35 +0300
committerHans Goudey <h.goudey@me.com>2020-11-17 20:57:35 +0300
commit7d23dd443046e5b1624f7f3819e020407eb49ef0 (patch)
tree912115114fb110429a82a19321a1e36ac3f753ee /source/blender/bmesh
parent75dbbaeda6c02972ee8f6fb8ababf0fbe6dd657f (diff)
Cleanup: Clang tidy inconsistent parameter name
Diffstat (limited to 'source/blender/bmesh')
-rw-r--r--source/blender/bmesh/intern/bmesh_query_uv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/intern/bmesh_query_uv.h b/source/blender/bmesh/intern/bmesh_query_uv.h
index 9aad8e17ca0..fe62c5a8809 100644
--- a/source/blender/bmesh/intern/bmesh_query_uv.h
+++ b/source/blender/bmesh/intern/bmesh_query_uv.h
@@ -38,7 +38,7 @@ float BM_face_uv_calc_cross(const BMFace *f, const int cd_loop_uv_offset) ATTR_W
ATTR_NONNULL();
void BM_face_uv_minmax(const BMFace *f, float min[2], float max[2], const int cd_loop_uv_offset);
-void BM_face_uv_transform(BMFace *f, const float matix[2][2], const int cd_loop_uv_offset);
+void BM_face_uv_transform(BMFace *f, const float matrix[2][2], const int cd_loop_uv_offset);
bool BM_loop_uv_share_edge_check_with_limit(BMLoop *l_a,
BMLoop *l_b,