Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/thirdparty/embree/kernels/bvh/bvh_factory.h
9906 views
1
// Copyright 2009-2021 Intel Corporation
2
// SPDX-License-Identifier: Apache-2.0
3
4
#pragma once
5
6
#include "../bvh/bvh.h"
7
#include "../common/isa.h"
8
#include "../common/accel.h"
9
#include "../common/scene.h"
10
#include "../geometry/curve_intersector_virtual.h"
11
12
namespace embree
13
{
14
/*! BVH instantiations */
15
class BVHFactory
16
{
17
public:
18
enum class BuildVariant { STATIC, DYNAMIC, HIGH_QUALITY };
19
enum class IntersectVariant { FAST, ROBUST };
20
};
21
}
22
23