don't recompile the entire renderer just because the version number changed
parent
18387bdbfc
commit
646f2b6a98
|
@ -49,7 +49,6 @@ typedef float Float;
|
|||
/**
|
||||
* Include a basic subset of the core classes
|
||||
*/
|
||||
#include <mitsuba/core/version.h>
|
||||
#include <mitsuba/core/constants.h>
|
||||
#include <mitsuba/core/fwd.h>
|
||||
#include <mitsuba/render/fwd.h>
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
#include <mitsuba/core/fresolver.h>
|
||||
#include <mitsuba/core/fstream.h>
|
||||
#include <mitsuba/core/timer.h>
|
||||
#include <mitsuba/core/version.h>
|
||||
#include <mitsuba/render/track.h>
|
||||
#include <dom/domCOLLADA.h>
|
||||
#include <dae.h>
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
#include <mitsuba/hw/glrenderer.h>
|
||||
#include <mitsuba/core/plugin.h>
|
||||
#include <mitsuba/core/statistics.h>
|
||||
#include <mitsuba/core/version.h>
|
||||
#if defined(WIN32)
|
||||
#include <mitsuba/core/getopt.h>
|
||||
#endif
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
|
||||
#include <mitsuba/core/plugin.h>
|
||||
#include <mitsuba/core/fstream.h>
|
||||
#include <mitsuba/core/version.h>
|
||||
#include <mitsuba/render/scene.h>
|
||||
#include <boost/filesystem/fstream.hpp>
|
||||
#include "converter.h"
|
||||
|
|
|
@ -18,6 +18,7 @@
|
|||
|
||||
#include <mitsuba/core/bitmap.h>
|
||||
#include <mitsuba/core/fstream.h>
|
||||
#include <mitsuba/core/version.h>
|
||||
|
||||
#if defined(WIN32)
|
||||
#undef _CRT_SECURE_NO_WARNINGS
|
||||
|
@ -660,7 +661,7 @@ void Bitmap::savePNG(Stream *stream, int compression) const {
|
|||
|
||||
memset(text, 0, sizeof(png_text)*4);
|
||||
text[0].key = (char *) "Generated by";
|
||||
text[0].text = (char *) "Vitsuba version " MTS_VERSION;
|
||||
text[0].text = (char *) "Mitsuba version " MTS_VERSION;
|
||||
text[0].compression = PNG_TEXT_COMPRESSION_NONE;
|
||||
text[1].key = (char *) "Title";
|
||||
text[1].text = (char *) m_title.c_str();
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
#include <mitsuba/core/lock.h>
|
||||
#include <mitsuba/core/fresolver.h>
|
||||
#include <mitsuba/core/cobject.h>
|
||||
#include <mitsuba/core/version.h>
|
||||
|
||||
#if !defined(WIN32)
|
||||
#include <dlfcn.h>
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
#include <mitsuba/core/sstream.h>
|
||||
#include <mitsuba/core/mstream.h>
|
||||
#include <mitsuba/core/plugin.h>
|
||||
#include <mitsuba/core/version.h>
|
||||
|
||||
MTS_NAMESPACE_BEGIN
|
||||
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
#include <mitsuba/core/sshstream.h>
|
||||
#include <mitsuba/core/shvector.h>
|
||||
#include <mitsuba/core/appender.h>
|
||||
#include <mitsuba/core/version.h>
|
||||
#include <mitsuba/core/fresolver.h>
|
||||
#include <mitsuba/core/plugin.h>
|
||||
#include <fstream>
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
#include <mitsuba/core/shvector.h>
|
||||
#include <mitsuba/core/statistics.h>
|
||||
#include <mitsuba/core/fresolver.h>
|
||||
#include <mitsuba/core/version.h>
|
||||
#include <mitsuba/core/appender.h>
|
||||
#include <mitsuba/render/util.h>
|
||||
#include <mitsuba/render/renderjob.h>
|
||||
|
|
Loading…
Reference in New Issue