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:
authorJacques Lucke <jacques@blender.org>2020-09-23 15:57:30 +0300
committerJacques Lucke <jacques@blender.org>2020-09-23 15:57:41 +0300
commit4e8d3123f016caba8eb382b25b75b70e4ec86203 (patch)
tree14d0a569b770835865f01a3d3b16fc6c7c155b91 /source/blender/blenkernel/BKE_pointcache.h
parentf09fcda8b681656b3f7bf8917ecf654a9d30faef (diff)
Cleanup: remove dead code in point cache and openvdb wrapper
Reviewers: brecht Differential Revision: https://developer.blender.org/D8988
Diffstat (limited to 'source/blender/blenkernel/BKE_pointcache.h')
-rw-r--r--source/blender/blenkernel/BKE_pointcache.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/source/blender/blenkernel/BKE_pointcache.h b/source/blender/blenkernel/BKE_pointcache.h
index c5bf94cc0c8..f8e04b75b3d 100644
--- a/source/blender/blenkernel/BKE_pointcache.h
+++ b/source/blender/blenkernel/BKE_pointcache.h
@@ -92,9 +92,6 @@ struct Scene;
struct SoftBody;
struct ViewLayer;
-struct OpenVDBReader;
-struct OpenVDBWriter;
-
/* temp structure for read/write */
typedef struct PTCacheData {
unsigned int index;
@@ -122,7 +119,6 @@ typedef struct PTCacheFile {
enum {
PTCACHE_FILE_PTCACHE = 0,
- PTCACHE_FILE_OPENVDB = 1,
};
typedef struct PTCacheID {
@@ -159,11 +155,6 @@ typedef struct PTCacheID {
/* copies cache cata to point data */
int (*read_stream)(PTCacheFile *pf, void *calldata);
- /* copies point data to cache data */
- int (*write_openvdb_stream)(struct OpenVDBWriter *writer, void *calldata);
- /* copies cache cata to point data */
- int (*read_openvdb_stream)(struct OpenVDBReader *reader, void *calldata);
-
/* copies custom extradata to cache data */
void (*write_extra_data)(void *calldata, struct PTCacheMem *pm, int cfra);
/* copies custom extradata to cache data */