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: 8c47a79837f151706a99c84fc6b6399b3b9ed8b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __YAFRAY_API_H
#define __YAFRAY_API_H

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

#endif