2
votes
OpenGL textures with multiple display contexts
Textures are not (by default) shared across contexts - you have to explicitly enable this, but how you do so is platform-specific.
On win32, it's wglShareLists, and on most oth …
2
votes
Color mapping a texture in opengl
Unless you have a pretty old graphics-card, it's surprising that you don't have fragment-shader support. I'd suggest you try double-checking using …
