Blender  V3.3
BKE_lightprobe.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later
2  * Copyright Blender Foundation. All rights reserved. */
3 
4 #pragma once
5 
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14 
15 struct LightProbe;
16 struct Main;
17 
18 void BKE_lightprobe_type_set(struct LightProbe *probe, short lightprobe_type);
19 void *BKE_lightprobe_add(struct Main *bmain, const char *name);
20 
21 #ifdef __cplusplus
22 }
23 #endif
void BKE_lightprobe_type_set(struct LightProbe *probe, short lightprobe_type)
Definition: lightprobe.c:100
void * BKE_lightprobe_add(struct Main *bmain, const char *name)
Definition: lightprobe.c:124
Definition: BKE_main.h:121