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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/yafray/intern/api.cpp')
-rw-r--r--source/blender/yafray/intern/api.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/source/blender/yafray/intern/api.cpp b/source/blender/yafray/intern/api.cpp
deleted file mode 100644
index 0cb1c6fafdf..00000000000
--- a/source/blender/yafray/intern/api.cpp
+++ /dev/null
@@ -1,14 +0,0 @@
-#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); }
-}