From 85f48216ed04c51bdc931153517fdc228507e78f Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Mon, 19 Sep 2016 14:59:24 +0200 Subject: Cycles: Cleanup, always use parenthesis Makes it simpler to compare different traversal algorithms. --- intern/cycles/kernel/bvh/bvh_shadow_all.h | 3 ++- intern/cycles/kernel/bvh/qbvh_shadow_all.h | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'intern/cycles/kernel/bvh') diff --git a/intern/cycles/kernel/bvh/bvh_shadow_all.h b/intern/cycles/kernel/bvh/bvh_shadow_all.h index f9da2a3caaa..0c0a877cdff 100644 --- a/intern/cycles/kernel/bvh/bvh_shadow_all.h +++ b/intern/cycles/kernel/bvh/bvh_shadow_all.h @@ -355,8 +355,9 @@ bool BVH_FUNCTION_FULL_NAME(BVH)(KernelGlobals *kg, triangle_intersect_precalc(dir, &isect_precalc); /* scale isect->t to adjust for instancing */ - for(int i = 0; i < num_hits_in_instance; i++) + for(int i = 0; i < num_hits_in_instance; i++) { (isect_array-i-1)->t *= t_fac; + } } else { float ignore_t = FLT_MAX; diff --git a/intern/cycles/kernel/bvh/qbvh_shadow_all.h b/intern/cycles/kernel/bvh/qbvh_shadow_all.h index 5043965c979..73dd18ad2bd 100644 --- a/intern/cycles/kernel/bvh/qbvh_shadow_all.h +++ b/intern/cycles/kernel/bvh/qbvh_shadow_all.h @@ -437,8 +437,9 @@ ccl_device bool BVH_FUNCTION_FULL_NAME(QBVH)(KernelGlobals *kg, # endif /* scale isect->t to adjust for instancing */ - for(int i = 0; i < num_hits_in_instance; i++) + for(int i = 0; i < num_hits_in_instance; i++) { (isect_array-i-1)->t *= t_fac; + } } else { float ignore_t = FLT_MAX; -- cgit v1.2.3