From 875df1e2b9a92eb49269a9040528bce1af1018b1 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Wed, 4 May 2016 17:14:14 +0200 Subject: Cycles: Fix hair minimal size doesn't work on GPU and SSE2 only CPUs --- intern/cycles/bvh/bvh_build.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'intern/cycles/bvh/bvh_build.cpp') diff --git a/intern/cycles/bvh/bvh_build.cpp b/intern/cycles/bvh/bvh_build.cpp index bba89a8f35c..63edbc9998f 100644 --- a/intern/cycles/bvh/bvh_build.cpp +++ b/intern/cycles/bvh/bvh_build.cpp @@ -629,6 +629,9 @@ BVHNode* BVHBuild::create_leaf_node(const BVHRange& range, bounds[type_index].grow(ref.bounds()); visibility[type_index] |= objects[ref.prim_object()]->visibility; + if (ref.prim_type() & PRIMITIVE_ALL_CURVE) { + visibility[type_index] |= PATH_RAY_CURVE; + } ++num_new_prims; } else { -- cgit v1.2.3