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
AgeCommit message (Collapse)Author
2010-01-30Fix #20146:Brecht Van Lommel
* .tif not loading on newer linux distributions, wasn't looking for libtiff version 4. * fix dds being too verbose when testing if it can open an image file.
2008-04-17Patch from GSR that a) fixes a whole bunch of GPL/BL licenseChris Want
blocks that were previously missed; and b) greatly increase my ohloh stats!
2008-02-20Patche from Giuseppe Ghibò to look in /usr/lib64Campbell Barton
2005-12-03fix for #3498Kent Mein
(Swap colors on bigendian machines) I also made it so that the env variable is tried ahead of all of the other looking. (That way you can override a system default if its broken without having to upgrade) This also makes it so we can remove the OSX ifdef. So I did. lukep: If you still want it add it back in but my gut says the less ifdefs we have the better ;) Kent
2005-12-03This commit does very little for the number of files touched.Kent Mein
I updated gen_dynlibtiff.py so its in sync with the file(s) it creates. I added a little more documentation to the readme.txt for adding new file formats. I also added two dummy functions to the tiff.c so it stopped whining about them being NULL. (I'm still working on the reported bugs but thought this was a good time to at least get this in) Kent
2005-11-22updated the python script to create a good c file. Thanks intrr.Kent Mein
Kent
2005-11-22got rid of snprintf.... Replaced with MEM_mallocN and friends...Kent Mein
Kent
2005-11-22This is a modified version of patch #2995Kent Mein
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