tags:

views:

100

answers:

3
+1  Q: 

OpenGL Font Lib

I find a simple (and portable) lib for integrate in a my OpenGL based game.

more simple and little of FreeType?

thanks

A: 

Try FreeType, here is a NeHe lesson on how to use it in an OpenGL program.

Lawand
hanks FreeType is good approoch.in my plans i port my app in some plataforms (PC, iPhone, PlayStation, etc..)FreeType is plataform-indepent.the hard part is integrate freetype in my proj
Oops, I haven't noticed that you mentioned you didn't want "FreeType"
Lawand
A: 

If your using QT, there's a built in font rendering subsystem, assuming you've sub classed QGLWidget, there is a set of text rendering methods you can call

If you don't find a library, you could always render the text out to an image using photoshop, and then use it as a texture atlas, and render textured quads out

Tom J Nowell
A: 

Try FTGL. Its portable, simple in use and can render 3D fonts. But it uses FreeType2.

qba