Cleanup: Use bools in BVHParams class.

This commit is contained in:
Thomas Dinges 2015-02-18 12:05:33 +01:00
parent 6fe23b60dd
commit 7f7413bce2
Notes: blender-bot 2023-02-14 09:28:30 +01:00
Referenced by issue #43721, SSAO does not work with the blend file
1 changed files with 4 additions and 4 deletions

View File

@ -28,7 +28,7 @@ class BVHParams
{
public:
/* spatial split area threshold */
int use_spatial_split;
bool use_spatial_split;
float spatial_split_alpha;
/* SAH costs */
@ -41,13 +41,13 @@ public:
int max_curve_leaf_size;
/* object or mesh level bvh */
int top_level;
bool top_level;
/* disk cache */
int use_cache;
bool use_cache;
/* QBVH */
int use_qbvh;
bool use_qbvh;
/* fixed parameters */
enum {