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/blenkernel/intern/volume.cc')
-rw-r--r--source/blender/blenkernel/intern/volume.cc9
1 files changed, 0 insertions, 9 deletions
diff --git a/source/blender/blenkernel/intern/volume.cc b/source/blender/blenkernel/intern/volume.cc
index afbdda56181..32f6a94aa7f 100644
--- a/source/blender/blenkernel/intern/volume.cc
+++ b/source/blender/blenkernel/intern/volume.cc
@@ -742,15 +742,6 @@ bool BKE_volume_load(Volume *volume, Main *bmain)
return false;
}
- /* Test if file exists. */
- if (!BLI_exists(grids.filepath)) {
- char filename[FILE_MAX];
- BLI_split_file_part(grids.filepath, filename, sizeof(filename));
- grids.error_msg = filename + std::string(" not found");
- CLOG_INFO(&LOG, 1, "Volume %s: %s", volume_name, grids.error_msg.c_str());
- return false;
- }
-
/* Open OpenVDB file. */
openvdb::io::File file(grids.filepath);
openvdb::GridPtrVec vdb_grids;