DevIL
DevIL copied to clipboard
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 portab...
Hi: I compiled the libraries by adding the solution from issue #54, Now when I compiling an example I got the following error: libILUT.so: undefined reference to `gluBuild2DMipmaps' What package...
void DxtcReadColor(ILushort Data, Color8888* Out) { ILubyte r, g, b; b = Data & 0x1f; g = (Data & 0x7E0) >> 5; r = (Data & 0xF800) >> 11; Out->r...
Something in my MIPS toolchain defines a constant `mips`, resulting in compilation error here. My toolchain comes from buildroot so it's likely that other users may experience the same issue....
- Some files define Pitch instead of LinearSize - The files sometimes also have RGBBitCount - However, many do not, such as those in the NVTT test suite -- https://github.com/castano/nvidia-texture-tools/blob/master/data/testsuite/lightmap/cottage.dds...
I found a source that has more information on the meaning of several fields in the header. I've added this to the header reader. (I haven't been able to test...
Hi, I have looked at this code: https://github.com/DentonW/DevIL/blob/e34284a7e07763769f671a74b4fec718174ad862/DevIL/src-ILU/src/ilu_filter.cpp#L935 As I understand it, there are two issues with it. 1) With bpc (bytes per channel) > 1 the algorithm throws away...
Hi Trying to install on Ubuntu 18.04 with mesa-utils package installed, I get the following error ``` $ dpkg -l | grep mesa-utils* ii mesa-utils 8.4.0-1 amd64 Miscellaneous Mesa GL...
Can somebody help me? I have spent two days to solve the problem, but i failed. /usr/bin/ld: /usr/local/lib/libpng.a(png.o): relocation R_X86_64_32 against `.rodata.str1.8' can not be used when making a shared...
Hey Devs, I've noticed some inconsistency in the handling of ILimage members Bpc and Bpp. For instance, after creating an ilImage(filename.exr), the image object had a Bpp of 16, where...
I've been trying to link to a DevIL installation to /usr/local/lib. In there there is a cmake/ folder with some files for different packages. I think find_package() defaults to these...