Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bvh_build.h « bvh « cycles « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 430efc3e0f63c11991d243345a510a85ab71c7b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/*
 * Adapted from code copyright 2009-2010 NVIDIA Corporation
 * Modifications Copyright 2011, Blender Foundation.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef __BVH_BUILD_H__
#define __BVH_BUILD_H__

#include <float.h>

#include "bvh.h"
#include "bvh_binning.h"
#include "bvh_unaligned.h"

#include "util_boundbox.h"
#include "util_task.h"
#include "util_vector.h"

CCL_NAMESPACE_BEGIN

class BVHBuildTask;
class BVHSpatialSplitBuildTask;
class BVHParams;
class InnerNode;
class Mesh;
class Object;
class Progress;

/* BVH Builder */

class BVHBuild
{
public:
	/* Constructor/Destructor */
	BVHBuild(const vector<Object*>& objects,
	         array<int>& prim_type,
	         array<int>& prim_index,
	         array<int>& prim_object,
	         array<float2>& prim_time,
	         const BVHParams& params,
	         Progress& progress);
	~BVHBuild();

	BVHNode *run();

protected:
	friend class BVHMixedSplit;
	friend class BVHObjectSplit;
	friend class BVHSpatialSplit;
	friend class BVHBuildTask;
	friend class BVHSpatialSplitBuildTask;
	friend class BVHObjectBinning;

	/* Adding references. */
	void add_reference_triangles(BoundBox& root, BoundBox& center, Mesh *mesh, int i);
	void add_reference_curves(BoundBox& root, BoundBox& center, Mesh *mesh, int i);
	void add_reference_mesh(BoundBox& root, BoundBox& center, Mesh *mesh, int i);
	void add_reference_object(BoundBox& root, BoundBox& center, Object *ob, int i);
	void add_references(BVHRange& root);

	/* Building. */
	BVHNode *build_node(const BVHRange& range,
	                    vector<BVHReference> *references,
	                    int level,
	                    int thread_id);
	BVHNode *build_node(const BVHObjectBinning& range, int level);
	BVHNode *create_leaf_node(const BVHRange& range,
	                          const vector<BVHReference>& references);
	BVHNode *create_object_leaf_nodes(const BVHReference *ref, int start, int num);

	bool range_within_max_leaf_size(const BVHRange& range,
	                                const vector<BVHReference>& references) const;

	/* Threads. */
	enum { THREAD_TASK_SIZE = 4096 };
	void thread_build_node(InnerNode *node,
	                       int child,
	                       BVHObjectBinning *range,
	                       int level);
	void thread_build_spatial_split_node(InnerNode *node,
	                                     int child,
	                                     BVHRange *range,
	                                     vector<BVHReference> *references,
	                                     int level,
	                                     int thread_id);
	thread_mutex build_mutex;

	/* Progress. */
	void progress_update();

	/* Tree rotations. */
	void rotate(BVHNode *node, int max_depth);
	void rotate(BVHNode *node, int max_depth, int iterations);

	/* Objects and primitive references. */
	vector<Object*> objects;
	vector<BVHReference> references;
	int num_original_references;

	/* Output primitive indexes and objects. */
	array<int>& prim_type;
	array<int>& prim_index;
	array<int>& prim_object;
	array<float2>& prim_time;

	bool need_prim_time;

	/* Build parameters. */
	BVHParams params;

	/* Progress reporting. */
	Progress& progress;
	double progress_start_time;
	size_t progress_count;
	size_t progress_total;
	size_t progress_original_total;

	/* Spatial splitting. */
	float spatial_min_overlap;
	vector<BVHSpatialStorage> spatial_storage;
	size_t spatial_free_index;
	thread_spin_lock spatial_spin_lock;

	/* Threads. */
	TaskPool task_pool;

	/* Unaligned building. */
	BVHUnaligned unaligned_heuristic;
};

CCL_NAMESPACE_END

#endif /* __BVH_BUILD_H__ */