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

api.cpp « intern « yafray « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f59c5e1f73ee49e3958528a615b52dc46504e110 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "export_File.h"
#include "export_Plugin.h"

static yafrayFileRender_t byfile;
static yafrayPluginRender_t byplugin;

yafrayRender_t *YAFBLEND = &byplugin;

extern "C"
{
	void YAF_switchPlugin() { YAFBLEND = &byplugin; }
	void YAF_switchFile() { YAFBLEND = &byfile; }
	int YAF_exportScene(Render* re) { return (int)YAFBLEND->exportScene(re); }
	void YAF_addDupliMtx(Object* obj) { YAFBLEND->addDupliMtx(obj); }
	int YAF_objectKnownData(Object* obj) { return (int)YAFBLEND->objectKnownData(obj); }
}