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, 3 insertions, 5 deletions
diff --git a/source/blender/imbuf/intern/writeimage.c b/source/blender/imbuf/intern/writeimage.c
index 015a062f1cf..49d827fcce5 100644
--- a/source/blender/imbuf/intern/writeimage.c
+++ b/source/blender/imbuf/intern/writeimage.c
@@ -58,10 +58,8 @@
#endif
-short (*IMB_fp_png_encode)(struct ImBuf *ibuf, int file, int flags) = 0;
-
short IMB_saveiff(struct ImBuf *ibuf,char *naam,int flags)
-{
+{
short ok=TRUE,delpl=FALSE;
int file = -1;
@@ -81,8 +79,8 @@ short IMB_saveiff(struct ImBuf *ibuf,char *naam,int flags)
}
}
- if (IS_png(ibuf) && IMB_fp_png_encode) {
- ok = IMB_fp_png_encode(ibuf,file,flags);
+ if (IS_png(ibuf)) {
+ ok = IMB_png_encode(ibuf,file,flags);
if (ok) {
close (file);
return (ok);