Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to create a texture for my 3D models. It works fine as long that I just load the image file. I am using Microsoft Visual C++ 2008 Express, and I have been searching for a solution on this "problem", loading a .tga from resource into my project, and use it as an OpenGL texture.

//resource.h
#define TEST_TGA 201

//resource.rc
TEST_TGA TGA "test.tga"

I don't know if I actually can do this? But I really having a hard time finding any articles or topics about this.

share|improve this question

1 Answer

up vote 2 down vote accepted

You could use stb_image library to load TGA images among other formats. You should be able to get the resource data with Windows API functions such as LoadResource. Check this answer for example code on loading binary resources.

share|improve this answer
used stb_image for inspiration and made my own library :-) – PeterBechP Nov 18 '12 at 18:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.