PDA

View Full Version : using OpenGL display lists to render strings



moshy
October 1st, 2007, 03:18 PM
I have found the FTGL library to be very good at rendering fonts in OpenGL, but I need to be able to do this in between glNewList(1, GL_COMPILE); and glEndList(); calls - which doesn't seem to work.
Can I get this to work?

moshy
October 2nd, 2007, 06:22 AM
glNewList(1, GL_COMPILE);
font->Render("");
glEndList();

duh!