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

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

#ifndef __CCL_API_H__
#define __CCL_API_H__

#ifdef __cplusplus
extern "C" {
#endif

/* create python module _cycles used by addon */

void *CCL_python_module_init(void);

void CCL_init_logging(const char *argv0);
void CCL_start_debug_logging(void);
void CCL_logging_verbosity_set(int verbosity);

#ifdef __cplusplus
}
#endif

#endif /* __CCL_API_H__ */