I have a simple openGL GUI that has uses a bmp as a texture. The problem is on some computers the texture doesn't show up. But on ones with newer OpenGL drivers it works. How can I make it more compatible. I think the problem may be with auxDIBImageLoad. When I inspect the result, I see the x,y correct, but the data pointer points to memory bank with all zeros.
What could be wrong?
views:
49answers:
1
+1
A:
One limitation of older OpenGL implementations is that they do not support non-power-of-two textures. What size is the texture in question ?
Bahbar
2010-04-30 13:56:56
The texture is 84x105 what size can I make it to work?
CptanPanic
2010-05-04 17:11:41
Thanks that worked. I made texture 64x128 and it worked.
CptanPanic
2010-05-04 17:31:40