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/BKE_volume.h')
-rw-r--r--source/blender/blenkernel/BKE_volume.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_volume.h b/source/blender/blenkernel/BKE_volume.h
index 738042cc3c0..e199a113410 100644
--- a/source/blender/blenkernel/BKE_volume.h
+++ b/source/blender/blenkernel/BKE_volume.h
@@ -30,6 +30,7 @@ struct BoundBox;
struct Depsgraph;
struct Main;
struct Object;
+struct ReportList;
struct Scene;
struct Volume;
struct VolumeGridVector;
@@ -143,6 +144,12 @@ struct VolumeGrid *BKE_volume_grid_add(struct Volume *volume,
VolumeGridType type);
void BKE_volume_grid_remove(struct Volume *volume, struct VolumeGrid *grid);
+/* File Save */
+bool BKE_volume_save(struct Volume *volume,
+ struct Main *bmain,
+ struct ReportList *reports,
+ const char *filename);
+
#ifdef __cplusplus
}
#endif