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

YafRay_Api.h « yafray « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f36a0b3df0da5c8b80a2f08d786ae3070de295d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __YAFRAY_API_H
#define __YAFRAY_API_H

/* C interface for Blender */
#ifdef __cplusplus
extern "C" {
#endif
int YAF_exportScene();
void YAF_displayImage();
void YAF_addDupliMtx(Object* obj);
int YAF_objectKnownData(Object* obj);
#ifdef __cplusplus
}
#endif

#endif