Tagged Questions
2
votes
1answer
377 views
DevIL and OpenGL in C++
This is my problem. I am writing a C++ OpenGL project using DevIL and I am getting compile-time errors while trying to work out how to load an image to use as a texture.
So far I have this
...
1
vote
2answers
574 views
Loading an image using DevIL and OpenGL in C++
As the title suggests, I am trying to load an image using DevIL, before passing it to OpenGL. I am using this piece of code as error control
const char* filename = "back.bmp";
if ...
0
votes
1answer
87 views
Image format question
I'm using an image loader (DevIL) for image loading. Im just wondering if the image format (the uncompressed format in memory) loaded from files (.jpg, .png, .bmp etc) is determined by the image ...
-3
votes
0answers
49 views
image sharpen process with pure pure c program
I don't know a clue about image processing, I am using devil to load up the image, then I got nothing to do next, for example, in order to achieve image sharpen effect,what to start? I can access each ...