[Bf-blender-cvs] [ca5271e] master: Cycles: Fix wrong allocator used for spatial builder

Sergey Sharybin noreply at git.blender.org
Thu Aug 18 20:47:53 CEST 2016


Commit: ca5271e637cdf75b1739a18a27f86ea7610450b1
Author: Sergey Sharybin
Date:   Thu Aug 18 20:47:14 2016 +0200
Branches: master
https://developer.blender.org/rBca5271e637cdf75b1739a18a27f86ea7610450b1

Cycles: Fix wrong allocator used for spatial builder

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

M	intern/cycles/bvh/bvh_build.cpp

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

diff --git a/intern/cycles/bvh/bvh_build.cpp b/intern/cycles/bvh/bvh_build.cpp
index 67ffb68..f2a735d 100644
--- a/intern/cycles/bvh/bvh_build.cpp
+++ b/intern/cycles/bvh/bvh_build.cpp
@@ -713,14 +713,14 @@ BVHNode* BVHBuild::create_leaf_node(const BVHRange& range,
 	 *    can not control.
 	 */
 	typedef StackAllocator<256, int> LeafStackAllocator;
+	typedef StackAllocator<256, BVHReference> LeafReferenceStackAllocator;
 
 	vector<int, LeafStackAllocator> p_type[PRIMITIVE_NUM_TOTAL];
 	vector<int, LeafStackAllocator> p_index[PRIMITIVE_NUM_TOTAL];
 	vector<int, LeafStackAllocator> p_object[PRIMITIVE_NUM_TOTAL];
-	vector<BVHReference, LeafStackAllocator> p_ref[PRIMITIVE_NUM_TOTAL];
+	vector<BVHReference, LeafReferenceStackAllocator> p_ref[PRIMITIVE_NUM_TOTAL];
 
 	/* TODO(sergey): In theory we should be able to store references. */
-	typedef StackAllocator<256, BVHReference> LeafReferenceStackAllocator;
 	vector<BVHReference, LeafReferenceStackAllocator> object_references;
 
 	uint visibility[PRIMITIVE_NUM_TOTAL] = {0};




More information about the Bf-blender-cvs mailing list