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:
authorSebastián Barschkis <sebbas@sebbas.org>2020-05-17 17:59:48 +0300
committerSebastián Barschkis <sebbas@sebbas.org>2020-05-17 18:09:28 +0300
commita975cb920772dcae69dd38ed32cddfd1d647c721 (patch)
tree8470e046f07ef38d688e0ae3c70e6d2076bde540 /source/blender/blenkernel/intern/fluid.c
parent0abe5936b7f63d1bb7e0e43f700299732d5c0827 (diff)
Fluid: Foundation for new OpenVDB file IO
This commit lays the foundation for support for OpenVDB caching with multiple grids per cache file.
Diffstat (limited to 'source/blender/blenkernel/intern/fluid.c')
-rw-r--r--source/blender/blenkernel/intern/fluid.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/source/blender/blenkernel/intern/fluid.c b/source/blender/blenkernel/intern/fluid.c
index fddc6b5e0ee..26d710c8c7d 100644
--- a/source/blender/blenkernel/intern/fluid.c
+++ b/source/blender/blenkernel/intern/fluid.c
@@ -3977,9 +3977,7 @@ static void BKE_fluid_modifier_processDomain(FluidModifierData *mmd,
}
}
if (!baking_data && !baking_noise && next_data && next_noise) {
- /* TODO (sebbas): Confirm if this read call is really needed or not.
- * Currently only important to load the shadow grid. */
- has_data = manta_update_smoke_structures(mds->fluid, mmd, data_frame);
+ /* Nothing to do here since we already loaded noise grids. */
}
else {
has_data = manta_read_data(mds->fluid, mmd, data_frame);