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

metal.h « bvh « cycles « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b136a2a1a675ff4a836f13fd55bbc5e1312fba6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* SPDX-License-Identifier: Apache-2.0
 * Copyright 2021-2022 Blender Foundation */

#ifndef __BVH_METAL_H__
#define __BVH_METAL_H__

#ifdef WITH_METAL

#  include "bvh/bvh.h"

CCL_NAMESPACE_BEGIN

BVH *bvh_metal_create(const BVHParams &params,
                      const vector<Geometry *> &geometry,
                      const vector<Object *> &objects,
                      Device *device);

CCL_NAMESPACE_END

#endif /* WITH_METAL */

#endif /* __BVH_METAL_H__ */