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/imbuf/intern/writeimage.c')
-rw-r--r--source/blender/imbuf/intern/writeimage.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/source/blender/imbuf/intern/writeimage.c b/source/blender/imbuf/intern/writeimage.c
index 925eaca3e87..150ab8aac26 100644
--- a/source/blender/imbuf/intern/writeimage.c
+++ b/source/blender/imbuf/intern/writeimage.c
@@ -50,9 +50,6 @@
#include "IMB_amiga.h"
#include "IMB_png.h"
#include "IMB_bmp.h"
-#ifdef WITH_OPENEXR
-#include "IMB_openexr.h"
-#endif
#include "IMB_iff.h"
#include "IMB_bitplanes.h"
@@ -73,11 +70,6 @@ short IMB_saveiff(struct ImBuf *ibuf,char *naam,int flags)
if (IS_png(ibuf)) {
return imb_savepng(ibuf,naam,flags);
}
-#ifdef WITH_OPENEXR
- if (IS_openexr(ibuf)) {
- return imb_save_openexr(ibuf,naam,flags);
- }
-#endif
if (IS_bmp(ibuf)) {
return imb_savebmp(ibuf,naam,flags);
}