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:
authorMai Lavelle <mai.lavelle@gmail.com>2017-08-23 07:40:35 +0300
committerMai Lavelle <mai.lavelle@gmail.com>2017-08-23 13:54:26 +0300
commit579edb1510d22571b5e10a55d1cc7be9d6fcf9f8 (patch)
treecb380160a249453ad83cbd16d8eeeec904657b7c /intern/cycles/bvh/bvh_node.h
parent2540741dee789f752687198c6f272a995d45073e (diff)
Cycles: Add maximum depth stat to bvh builder
Diffstat (limited to 'intern/cycles/bvh/bvh_node.h')
-rw-r--r--intern/cycles/bvh/bvh_node.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/intern/cycles/bvh/bvh_node.h b/intern/cycles/bvh/bvh_node.h
index 1c875f5a524..94cf5ab730c 100644
--- a/intern/cycles/bvh/bvh_node.h
+++ b/intern/cycles/bvh/bvh_node.h
@@ -38,6 +38,7 @@ enum BVH_STAT {
BVH_STAT_UNALIGNED_INNER_QNODE_COUNT,
BVH_STAT_ALIGNED_LEAF_COUNT,
BVH_STAT_UNALIGNED_LEAF_COUNT,
+ BVH_STAT_DEPTH,
};
class BVHParams;