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>2020-08-17 05:34:05 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-08-17 05:34:05 +0300
commit9762c3892e4b1c7225dc0d792caeba668104c7e2 (patch)
tree6c9c49e8168bcfa3181540a89e271053f63b1610 /intern/cycles/render
parentcafe5cd9b036b41dfe21fddc5ebc5bf7948c98aa (diff)
Cleanup: spelling
Diffstat (limited to 'intern/cycles/render')
-rw-r--r--intern/cycles/render/mesh_volume.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/intern/cycles/render/mesh_volume.cpp b/intern/cycles/render/mesh_volume.cpp
index 2ee51f4b732..567ed7738f3 100644
--- a/intern/cycles/render/mesh_volume.cpp
+++ b/intern/cycles/render/mesh_volume.cpp
@@ -417,9 +417,9 @@ static openvdb::GridBase::ConstPtr openvdb_grid_from_device_texture(device_textu
typename GridType::Ptr sparse = GridType::create(ValueType(0.0f));
openvdb::tools::copyFromDense(dense, *sparse, ValueType(volume_clipping));
- /* copyFromDense will remove any leaf node that contains constant data and replace it with a
- * tile, however, we need to preserve the leaves in order to generate the mesh, so revoxelize the
- * leaves that were pruned. This should not affect areas that were skipped due to the
+ /* #copyFromDense will remove any leaf node that contains constant data and replace it with a
+ * tile, however, we need to preserve the leaves in order to generate the mesh, so re-voxelize
+ * the leaves that were pruned. This should not affect areas that were skipped due to the
* volume_clipping parameter. */
sparse->tree().voxelizeActiveTiles();