textures tainted green...

Started by
2 comments, last by Daaark 15 years, 9 months ago
Whenever I draw a textured triangle strip, it gets blended with this ugly shade of green, which I assume is the default color for drawing. I'm stumped. Any guesses as to why this is happening?
Advertisement
Have you tried simply putting a glColor4f(1,1,1,1); before you draw the thing? The green color is probably left over from something you draw in green before you draw the textured strip.
Of course! It works now.

I might have never caught that myself. Thank you.
bleaf, OpenGL is a state machine. Every state you set up (like color, fog, texturing enabled), stays the in the state you toggled it to until you specifically toggle it off.

This topic is closed to new replies.

Advertisement