2004-01-08 23:12:56 +00:00
|
|
|
#include "export_File.h"
|
2004-06-16 18:44:12 +00:00
|
|
|
#include "export_Plugin.h"
|
2004-01-08 23:12:56 +00:00
|
|
|
|
|
|
|
|
static yafrayFileRender_t byfile;
|
2004-06-16 18:44:12 +00:00
|
|
|
static yafrayPluginRender_t byplugin;
|
2004-01-08 23:12:56 +00:00
|
|
|
|
2006-05-29 03:59:12 +00:00
|
|
|
yafrayRender_t *YAFBLEND = &byplugin;
|
2004-01-08 23:12:56 +00:00
|
|
|
|
2006-05-29 03:59:12 +00:00
|
|
|
extern "C"
|
2004-01-08 23:12:56 +00:00
|
|
|
{
|
2006-05-29 03:59:12 +00:00
|
|
|
void YAF_switchPlugin() { YAFBLEND = &byplugin; }
|
|
|
|
|
void YAF_switchFile() { YAFBLEND = &byfile; }
|
|
|
|
|
int YAF_exportScene(Render* re) { return (int)YAFBLEND->exportScene(re); }
|
2004-01-08 23:12:56 +00:00
|
|
|
}
|