Overlaying part of the scene

Started by
1 comment, last by JoshG 21 years, 7 months ago
G''day all I''ve written a console for a game, and i''ve set it up so that when the text changes it will update a texture that i use for displaying the console. Is there any way for me to Draw my level, then draw this Console texture (On a Quad) ON TOP of what ever was already on the scene? Any input is much appreciated --Josh
Advertisement
glDisable(GL_DEPTH_TEST);

draw...

glEnable(GL_DEPTH_TEST);
Cheers,
Thanks allot

--Josh

This topic is closed to new replies.

Advertisement