Advertisement

Textured Fonts

Started by May 04, 2003 04:51 PM
1 comment, last by kmaz 21 years, 10 months ago
I read the tutorial on textured fonts on the page, and tried to apply it to my project. When i did it made everything textured. Is there a way to only texture the text, and not anything else? Thanks -Ken Maz
After you have drawn the text, turn texturing back off.
So something like this:

glEnable(GL_TEXTURE_2D);
DrawText("blah");
glDisable(GL_TEXTURE_2D);
Advertisement
Thank you, works like a charm.

-Ken Maz

This topic is closed to new replies.

Advertisement