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>2005-11-22 21:50:03 +0300
committerKent Mein <mein@cs.umn.edu>2005-11-22 21:50:03 +0300
commit00f266c651a52027b662f725d081af6b51aae343 (patch)
tree40fd6d4d9a76f1eddcc63e5af6091c1442922dca /source/blender/src/toets.c
parentb63e26e109ba8c651ea20f553e3ca8e0604fc73f (diff)
This is a modified version of patch #2995
To enable dynamic tiff support. I had to fix some of the logic in the fileselect box for icons, I also expanded the patch to look in various default locations for a dynamic libtiff.so/libtiff.dll and look at the env variable BF_TIFF_LIB if it can't find it automatically. If unable to load the library it prints a message about setting BF_TIFF_LIB to the console. I haven't been able to test it on a lot of platforms but hopefully it will just work ;) I added the files to scons but have not had a chance to test that as well. Kent
Diffstat (limited to 'source/blender/src/toets.c')
-rw-r--r--source/blender/src/toets.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/src/toets.c b/source/blender/src/toets.c
index 721738b8931..0fee06a65d8 100644
--- a/source/blender/src/toets.c
+++ b/source/blender/src/toets.c
@@ -215,6 +215,9 @@ void schrijfplaatje(char *name)
else if(R.r.imtype==R_BMP) {
ibuf->ftype= BMP;
}
+ else if((G.have_libtiff) && (R.r.imtype==R_TIFF)) {
+ ibuf->ftype= TIF;
+ }
else if((R.r.imtype==R_TARGA) || (R.r.imtype==R_PNG)) {
ibuf->ftype= TGA;
}
@@ -491,6 +494,10 @@ int save_image_filesel_str(char *str)
strcpy(str, "Save PNG"); return 1;
case R_BMP:
strcpy(str, "Save BMP"); return 1;
+ case R_TIFF:
+ if (G.have_libtiff) {
+ strcpy(str, "Save TIFF"); return 1;
+ }
case R_TARGA:
strcpy(str, "Save Targa"); return 1;
case R_RAWTGA: