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:
Diffstat (limited to 'source/blender/draw/intern/draw_cache_impl_lattice.c')
-rw-r--r--source/blender/draw/intern/draw_cache_impl_lattice.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/draw/intern/draw_cache_impl_lattice.c b/source/blender/draw/intern/draw_cache_impl_lattice.c
index eabef49fa22..0a1c7d9581a 100644
--- a/source/blender/draw/intern/draw_cache_impl_lattice.c
+++ b/source/blender/draw/intern/draw_cache_impl_lattice.c
@@ -84,7 +84,7 @@ static int lattice_render_verts_len_get(Lattice *lt)
return vert_len_calc(u, v, w);
}
- /* TODO remove internal coords */
+ /* TODO: remove internal coords. */
return vert_len_calc(u, v, w);
}
@@ -102,7 +102,7 @@ static int lattice_render_edges_len_get(Lattice *lt)
return edge_len_calc(u, v, w);
}
- /* TODO remove internal coords */
+ /* TODO: remove internal coords. */
return edge_len_calc(u, v, w);
}
@@ -305,7 +305,7 @@ void DRW_lattice_batch_cache_dirty_tag(Lattice *lt, int mode)
cache->is_dirty = true;
break;
case BKE_LATTICE_BATCH_DIRTY_SELECT:
- /* TODO Separate Flag vbo */
+ /* TODO: Separate Flag VBO. */
GPU_BATCH_DISCARD_SAFE(cache->overlay_verts);
break;
default: