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>2018-12-11 07:08:18 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-12-11 07:09:09 +0300
commitc7ec1fa5e66ef96b7ea1f1c082683c227930bae3 (patch)
treeae918690dbd5b078a23e41e9faaa5a2cf8bcef92 /source/blender/draw/intern/draw_cache_impl_mesh.c
parent7fe3d1e7d718561e275f21acc7261207e67bf685 (diff)
Cleanup: use BKE_object_* prefix for object API
Also minor style cleanup.
Diffstat (limited to 'source/blender/draw/intern/draw_cache_impl_mesh.c')
-rw-r--r--source/blender/draw/intern/draw_cache_impl_mesh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/draw/intern/draw_cache_impl_mesh.c b/source/blender/draw/intern/draw_cache_impl_mesh.c
index d13e206e132..508f3d6da69 100644
--- a/source/blender/draw/intern/draw_cache_impl_mesh.c
+++ b/source/blender/draw/intern/draw_cache_impl_mesh.c
@@ -3809,8 +3809,8 @@ static void mesh_create_edit_tris_and_verts(
if (p_orig != ORIGINDEX_NONE) {
BMFace *efa = BM_face_at_index(bm, p_orig);
if (add_edit_tri_mapped(rdata, vbo_pos_nor, vbo_lnor, vbo_data, elbp,
- attr_id.pos, attr_id.vnor, attr_id.lnor, attr_id.data,
- efa, mlt, polynors, loopnors, tri_len_used))
+ attr_id.pos, attr_id.vnor, attr_id.lnor, attr_id.data,
+ efa, mlt, polynors, loopnors, tri_len_used))
{
tri_len_used += 3;
}