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:
authorPablo Vazquez <venomgfx@gmail.com>2019-02-04 03:23:48 +0300
committerPablo Vazquez <venomgfx@gmail.com>2019-02-04 03:23:48 +0300
commit3be845ce20f6101838eeda7c15abf027f0c1a0f6 (patch)
treef67c61a3ca4f9db7b7f19927a82523203e9d44bd /source/blender/blenkernel
parenta6f045de3fad180c4010b7b3d0a7b0db28c36886 (diff)
Cleanup: Typos in comments (to to)
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/intern/subdiv_mesh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/subdiv_mesh.c b/source/blender/blenkernel/intern/subdiv_mesh.c
index c83bdb184f8..09905c9ed99 100644
--- a/source/blender/blenkernel/intern/subdiv_mesh.c
+++ b/source/blender/blenkernel/intern/subdiv_mesh.c
@@ -596,7 +596,7 @@ static void evaluate_vertex_and_apply_displacement_copy(
const float inv_num_accumulated =
1.0f / ctx->accumulated_counters[subdiv_vertex_index];
/* Displacement is accumulated in subdiv vertex position.
- * Needs to to be backed up before copying data from original vertex. */
+ * Needs to be backed up before copying data from original vertex. */
float D[3] = {0.0f, 0.0f, 0.0f};
if (ctx->have_displacement) {
copy_v3_v3(D, subdiv_vert->co);
@@ -628,7 +628,7 @@ static void evaluate_vertex_and_apply_displacement_interpolate(
const float inv_num_accumulated =
1.0f / ctx->accumulated_counters[subdiv_vertex_index];
/* Displacement is accumulated in subdiv vertex position.
- * Needs to to be backed up before copying data from original vertex. */
+ * Needs to be backed up before copying data from original vertex. */
float D[3] = {0.0f, 0.0f, 0.0f};
if (ctx->have_displacement) {
copy_v3_v3(D, subdiv_vert->co);