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 'intern/cycles/render/openvdb.h')
-rw-r--r--intern/cycles/render/openvdb.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/intern/cycles/render/openvdb.h b/intern/cycles/render/openvdb.h
index 0eae87dc6ac..a92d027986e 100644
--- a/intern/cycles/render/openvdb.h
+++ b/intern/cycles/render/openvdb.h
@@ -26,13 +26,16 @@ int3 openvdb_get_resolution(const string& filepath);
void openvdb_load_preprocess(const string& filepath,
const string& grid_name,
const float threshold,
+ const bool use_pad,
vector<int> *sparse_index,
int &sparse_size);
void openvdb_load_image(const string& filepath,
const string& grid_name,
- float *image,
- vector<int> *sparse_index);
+ const vector<int> *sparse_indexes,
+ const int sparse_size,
+ const bool use_pad,
+ float *image);
CCL_NAMESPACE_END