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/bvh/bvh.h')
-rw-r--r--intern/cycles/bvh/bvh.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/intern/cycles/bvh/bvh.h b/intern/cycles/bvh/bvh.h
index 60bc62ee6e4..8e664e67dc5 100644
--- a/intern/cycles/bvh/bvh.h
+++ b/intern/cycles/bvh/bvh.h
@@ -110,15 +110,15 @@ protected:
virtual void refit_nodes() = 0;
};
-/* Binary BVH
+/* BVH2
*
* Typical BVH with each node having two children. */
-class BinaryBVH : public BVH {
+class BVH2 : public BVH {
protected:
/* constructor */
friend class BVH;
- BinaryBVH(const BVHParams& params, const vector<Object*>& objects);
+ BVH2(const BVHParams& params, const vector<Object*>& objects);
/* pack */
void pack_nodes(const BVHNode *root);
@@ -154,15 +154,15 @@ protected:
void refit_node(int idx, bool leaf, BoundBox& bbox, uint& visibility);
};
-/* QBVH
+/* BVH4
*
* Quad BVH, with each node having four children, to use with SIMD instructions. */
-class QBVH : public BVH {
+class BVH4 : public BVH {
protected:
/* constructor */
friend class BVH;
- QBVH(const BVHParams& params, const vector<Object*>& objects);
+ BVH4(const BVHParams& params, const vector<Object*>& objects);
/* pack */
void pack_nodes(const BVHNode *root);