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.
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.
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.