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

multi.h « bvh « cycles « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 824899f31017d5ef623e95eee07add605b98e75c (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
/* SPDX-License-Identifier: Apache-2.0
 * Copyright 2020-2022 Blender Foundation. */

#ifndef __BVH_MULTI_H__
#define __BVH_MULTI_H__

#include "bvh/bvh.h"
#include "bvh/params.h"

CCL_NAMESPACE_BEGIN

class BVHMulti : public BVH {
 public:
  vector<BVH *> sub_bvhs;

 protected:
  friend class BVH;
  BVHMulti(const BVHParams &params,
           const vector<Geometry *> &geometry,
           const vector<Object *> &objects);
  virtual ~BVHMulti();
};

CCL_NAMESPACE_END

#endif /* __BVH_MULTI_H__ */