Loading OpenGL textures in Windows from JPG

Started by
0 comments, last by Caste 12 years, 6 months ago
Hi,
I'm trying to load a jpg image into an OpenGL texture and having a miserable time of it. I'm using visual studio 2010, windows 7, so it's a real bastard to try and use most of the image libraries which provide this functionality. I've been trying to use the method described here:

http://nehe.gamedev...._loading/18007/

I'm able to get it to work in the example VS project provided, but can't figure out why it won't work in my own code. It's failing at this step:

hbmpTemp = CreateDIBSection(hdcTemp, &bi, DIB_RGB_COLORS, (void**)&pBits, 0, 0);

But there is no error message, it just doesn't work, making it tricky to debug. Any ideas?

Thanks,
Zach
Advertisement
Sorry about the late reply, but nevertheless a useful tip for texture loading:

Try using SOIL, a really easy to use library that allows you to load an broad variety of file formats: http://www.lonesock.net/soil.html

EDIT: I've added a small tutorial as extension to lesson 6: Texture loading with SOIL

This topic is closed to new replies.

Advertisement