From f0aceff1966f76fdf32420b9e319eaa5341c364d Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Mon, 9 Jan 2006 10:55:41 +0000 Subject: Orange: Further cleanup of EXR saving - F10 scene buttons now has options "half" and "zbuf" for exr saving. Note: when no float buffer is available, it always saves as "half", that's sufficient anyway, since half is 16 bits per channel. - EXR in imbuf now uses compliant ibuf->ftype flags for denoting exr extensions such as 'half' and 'compression'. - Removed ugly blenkernel dependency from exr module --- source/blender/imbuf/intern/writeimage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/imbuf/intern/writeimage.c') diff --git a/source/blender/imbuf/intern/writeimage.c b/source/blender/imbuf/intern/writeimage.c index b752dbf9dd0..522ce78ebc0 100644 --- a/source/blender/imbuf/intern/writeimage.c +++ b/source/blender/imbuf/intern/writeimage.c @@ -97,7 +97,7 @@ short IMB_saveiff(struct ImBuf *ibuf, char *name, int flags) } #ifdef WITH_OPENEXR if (IS_openexr(ibuf)) { - return imb_save_openexr_half(ibuf, name, flags); + return imb_save_openexr(ibuf, name, flags); } #endif -- cgit v1.2.3