[Bf-blender-cvs] [3f60d66] master: Cycles: Fix stupid typo in the previous commit

Sergey Sharybin noreply at git.blender.org
Thu Jan 15 22:26:27 CET 2015


Commit: 3f60d665bb888d7b50a4b41db30ca57daa786ca8
Author: Sergey Sharybin
Date:   Fri Jan 16 02:21:35 2015 +0500
Branches: master
https://developer.blender.org/rB3f60d665bb888d7b50a4b41db30ca57daa786ca8

Cycles: Fix stupid typo in the previous commit

===================================================================

M	intern/cycles/bvh/bvh_build.cpp

===================================================================

diff --git a/intern/cycles/bvh/bvh_build.cpp b/intern/cycles/bvh/bvh_build.cpp
index 3f56be0..40f2843 100644
--- a/intern/cycles/bvh/bvh_build.cpp
+++ b/intern/cycles/bvh/bvh_build.cpp
@@ -343,7 +343,7 @@ bool BVHBuild::range_within_max_leaf_size(const BVHRange& range)
 	}
 
 	return (num_triangles < params.max_triangle_leaf_size) &&
-	       (num_curves < params.max_curve_leaf_size);
+	       (num_curves < params.max_curve_leaf_size) &&
 	       (num_motion_curves < params.max_curve_leaf_size);
 }




More information about the Bf-blender-cvs mailing list