20 lines
356 B
C++
20 lines
356 B
C++
/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
#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
|