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/export_File.h')
-rw-r--r--source/blender/yafray/intern/export_File.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/source/blender/yafray/intern/export_File.h b/source/blender/yafray/intern/export_File.h
deleted file mode 100644
index 0eb1bfec1ed..00000000000
--- a/source/blender/yafray/intern/export_File.h
+++ /dev/null
@@ -1,34 +0,0 @@
-#ifndef __EXPORT_FILE_H
-#define __EXPORT_FILE_H
-
-#include"yafray_Render.h"
-
-class yafrayFileRender_t : public yafrayRender_t
-{
- public:
- virtual ~yafrayFileRender_t() {}
- protected:
- std::string imgout;
- std::ofstream xmlfile;
- std::string xmlpath;
- std::ostringstream ostr;
-
- void displayImage();
- bool executeYafray(const std::string &xmlpath);
- virtual void writeTextures();
- virtual void writeShader(const std::string &shader_name, Material* matr, const std::string &facetexname="");
- virtual void writeMaterialsAndModulators();
- virtual void writeObject(Object* obj, ObjectRen *obr, const std::vector<VlakRen*> &VLR_list, const float obmat[4][4]);
- virtual void writeAllObjects();
- virtual void writeAreaLamp(LampRen* lamp, int num, float iview[4][4]);
- virtual void writeLamps();
- virtual void writeCamera();
- virtual void writeHemilight();
- virtual void writePathlight();
- virtual bool writeWorld();
- virtual bool writeRender();
- virtual bool initExport();
- virtual bool finishExport();
-};
-
-#endif