2023-06-14 16:52:36 +10:00
|
|
|
/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0 */
|
2019-02-06 16:15:45 +01:00
|
|
|
|
2024-12-26 17:53:56 +01:00
|
|
|
#pragma once
|
2019-02-06 16:15:45 +01:00
|
|
|
|
2024-07-10 18:30:02 +02:00
|
|
|
#include "RNA_blender_cpp.hh"
|
2019-02-06 16:15:45 +01:00
|
|
|
|
|
|
|
|
#include "device/device.h"
|
|
|
|
|
|
|
|
|
|
CCL_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
|
|
/* Get number of threads to use for rendering. */
|
|
|
|
|
int blender_device_threads(BL::Scene &b_scene);
|
|
|
|
|
|
2024-06-03 22:41:25 +02:00
|
|
|
/* Convert Blender settings to device specification. In addition, preferences_device contains the
|
|
|
|
|
* device chosen in Cycles global preferences, which is useful for the denoiser device selection.
|
|
|
|
|
*/
|
2019-02-11 13:37:45 +01:00
|
|
|
DeviceInfo blender_device_info(BL::Preferences &b_preferences,
|
|
|
|
|
BL::Scene &b_scene,
|
2023-01-04 16:01:24 +00:00
|
|
|
bool background,
|
2024-06-03 22:41:25 +02:00
|
|
|
bool preview,
|
|
|
|
|
DeviceInfo &preferences_device);
|
2019-02-06 16:15:45 +01:00
|
|
|
|
|
|
|
|
CCL_NAMESPACE_END
|