DentonW / DevIL

Developer's Image Library (DevIL) is a cross-platform image library utilizing a simple syntax to load, save, convert, manipulate, filter, and display a variety of images with ease. It is highly portable and has been ported to several platforms.
http://openil.sourceforge.net/
GNU Lesser General Public License v2.1
446 stars 137 forks source link

an xpm bugfix and assorted housekeeping #45

Closed bcampbell closed 7 years ago

bcampbell commented 7 years ago

The xpm commit is the most important one, it's an actual bug fix.

The line ending normalisation is a result of the recent addtion of a .gitattribute file. The .gitattribute file was definitely the right thing to do - it now means that git will convert text files to the right line endings on whatever system you check it out on, rather than relying on whatever local, per-user git settings. This commit just normalises the line endings in the repo, so that git doesn't locally change huge numbers of files every time you pull to a non-windows machine.

The il_stack stuff is just minor tidying. I'm trying out a new approach to multi-frame/mip/face/layer images, in my restack branch, so I was digging through il_stack.

DentonW commented 7 years ago

Merged - thanks!