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

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

#pragma once

#include "util/string.h"
#include "util/vector.h"

CCL_NAMESPACE_BEGIN

class Device;
class DeviceInfo;
class Profiler;
class Stats;

Device *device_multi_create(const DeviceInfo &info, Stats &stats, Profiler &profiler);

CCL_NAMESPACE_END