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:
authorKent Mein <mein@cs.umn.edu>2004-12-09 16:09:11 +0300
committerKent Mein <mein@cs.umn.edu>2004-12-09 16:09:11 +0300
commitbdffe196afee7ea2cd5bbdffa3514b4ae2b68196 (patch)
tree80860cf841f227bafe614f068ee20c0b7ca36c48 /source/blender/imbuf/intern/IMB_bmp.h
parenteae5d39899652f86e2b9288a69395dfcec27c8b1 (diff)
This fixes bug #1990
It moves targa, bmp, iris and png loading so that were not opening 2 file handles for each file, and made them like the jpeg stuff. Also cleaned up some minor other stuff. Kent
Diffstat (limited to 'source/blender/imbuf/intern/IMB_bmp.h')
-rw-r--r--source/blender/imbuf/intern/IMB_bmp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/IMB_bmp.h b/source/blender/imbuf/intern/IMB_bmp.h
index d220c564652..7516c8b4add 100644
--- a/source/blender/imbuf/intern/IMB_bmp.h
+++ b/source/blender/imbuf/intern/IMB_bmp.h
@@ -44,7 +44,7 @@ struct ImBuf;
int imb_is_a_bmp(void *buf);
struct ImBuf *imb_bmp_decode(unsigned char *mem, int size, int flags);
-short imb_savebmp(struct ImBuf *ibuf, int outfile, int flags);
+short imb_savebmp(struct ImBuf *ibuf, char *name, int flags);
#endif