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:
authorTon Roosendaal <ton@blender.org>2006-01-09 13:55:41 +0300
committerTon Roosendaal <ton@blender.org>2006-01-09 13:55:41 +0300
commitf0aceff1966f76fdf32420b9e319eaa5341c364d (patch)
tree84c0892156689ff3c9d4f578856b3602aa5bc103 /source/blender/imbuf/intern/writeimage.c
parentc693e01b8d9bd9af629b0fc8abab0a42a810c177 (diff)
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
Diffstat (limited to 'source/blender/imbuf/intern/writeimage.c')
-rw-r--r--source/blender/imbuf/intern/writeimage.c2
1 files changed, 1 insertions, 1 deletions
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