blob: 54021ca6eb9f261ed27393c4dfd7e83db814f63e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Copyright 2009-2020 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
#pragma once
#include "../bvh/bvh.h"
#include "../common/isa.h"
#include "../common/accel.h"
#include "../common/scene.h"
#include "../geometry/curve_intersector_virtual.h"
namespace embree
{
/*! BVH instantiations */
class BVHFactory
{
public:
enum class BuildVariant { STATIC, DYNAMIC, HIGH_QUALITY };
enum class IntersectVariant { FAST, ROBUST };
};
}
|