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:
authorThomas Dinges <blender@dingto.org>2015-09-24 17:49:10 +0300
committerThomas Dinges <blender@dingto.org>2015-09-24 17:49:10 +0300
commit97a3fa17d6bb959b3b3c78e5628ca90a98fd827d (patch)
treee57edc9e2e54c38f9dff5e7cd759e91283d398ec /intern/cycles/bvh/bvh.h
parentdfadf18659fc6252b745b83ceb185a55dea4a2c7 (diff)
Cleanup: Remove some more BVH cache code, for reading/writing the cache.
Diffstat (limited to 'intern/cycles/bvh/bvh.h')
-rw-r--r--intern/cycles/bvh/bvh.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/intern/cycles/bvh/bvh.h b/intern/cycles/bvh/bvh.h
index 0ee5a309dc8..272a3fa1514 100644
--- a/intern/cycles/bvh/bvh.h
+++ b/intern/cycles/bvh/bvh.h
@@ -29,7 +29,6 @@ class BVHNode;
struct BVHStackEntry;
class BVHParams;
class BoundBox;
-class CacheData;
class LeafNode;
class Object;
class Progress;
@@ -96,10 +95,6 @@ public:
protected:
BVH(const BVHParams& params, const vector<Object*>& objects);
- /* cache */
- bool cache_read(CacheData& key);
- void cache_write(CacheData& key);
-
/* triangles and strands*/
void pack_primitives();
void pack_triangle(int idx, float4 woop[3]);