There are already a number of questions about text rendering in OpenGL, such as:

But mostly what is discussed is rendering textured quads using the fixed-function pipeline. Surely shaders must make a better way.

I'm not really concerned about internationalization, most of my strings will be plot tick labels (date and time or purely numeric). But the plots will be re-rendered at the screen refresh rate and there could be quite a bit of text (not more than a few thousand glyphs on-screen, but enough that hardware accelerated layout would be nice).

Are there any libraries for text-rendering using modern OpenGL? If not, what is the best approach?

  • Geometry shaders that accept e.g. position and orientation and a character sequence and emit textured quads
  • Geometry shaders that render vector fonts
  • As above, but using tessellation shaders instead
  • A compute shader to do font rasterization
link|improve this question

67% accept rate
3  
I'm not able to answer on state of the art, being primarily OpenGL ES oriented nowadays, but tessellating a TTF using the GLU tesselator and submitting it as geometry via the old fixed functionality pipeline with kerning calculated on CPU gave good visual results on anti-aliasing hardware and good performance across the board even almost a decade ago. So it's not just with shaders that you can find a 'better' way (depending on your criteria, of course). FreeType can spit out Bezier glyph boundaries and kerning information, so you can work live from a TTF at runtime. – Tommy Mar 10 '11 at 16:59
feedback

5 Answers

up vote 24 down vote accepted

Rendering outlines, unless you render only a dozen characters total, remains a "no go" due to the number of vertices needed per character to approximate curvature. Though there have been approaches to evaluate bezier curves in the pixel shader instead, these suffer from not being easily antialiased, which is trivial using a distance-map-textured quad, and evaluating curves in the shader is still computionally much more expensive than necessary.

The best trade-off between "fast" and "quality" are still textured quads with a signed distance field texture. It is very slightly slower than using a plain normal textured quad, but not so much. The quality on the other hand, is in an entirely different ballpark. The results are truly stunning, it is as fast as you can get, and effects such as glow are trivially easy to add, too. Also, the technique can be downgraded nicely to older hardware, if needed.

See the famous Valve paper for the technique.

The technique is conceptually similar to how implicit surfaces (metaballs and such) work, though it does not generate polygons. It runs entirely in the pixel shader and takes the distance sampled from the texture as a distance function. Everything above a chosen threshold (usually 0.5) is "in", everything else is "out". In the simplest case, on 10 year old non-shader-capable hardware, setting the alpha test threshold to 0.5 will do that exact thing (though without special effects and antialiasing).
If one wants to add a little more weight to the font (faux bold), a slightly smaller threshold will do the trick without modifying a single line of code (just change your "font_weight" uniform). For a glow effect, one simply considers everything above one threshold as "in" and everything above another (smaller) threshold as "out, but in glow", and LERPs between the two. Antialiasing works similarly.

By using an 8-bit signed distance value rather than a single bit, this technique increases the effective resolution of your texture map 16-fold in each dimension (instead of black and white, all possible shades are used, thus we have 256 times the information using the same storage). But even if you magnify far beyond 16x, the result still looks quite acceptable. Long straight lines will eventually become a bit wiggly, but there will be no typical "blocky" sampling artefacts.

You can use a geometry shader for generating the quads out of points (reduce bus bandwidth), but honestly the gains are rather marginal. The same is true for instanced character rendering as described in GPG8. The overhead of instancing is only amortized if you have a lot of text to draw. The gains are, in my opinion, in no relation to the added complexity and non-downgradeability. Plus, you are either limited by the amount of constant registers, or you have to read from a texture buffer object, which is non-optimal for cache coherence (and the intent was to optimize to begin with!).
A simple, plain old vertex buffer is just as fast (possibly faster) if you schedule the upload a bit ahead in time and will run on every hardware built during the last 15 years. And, it is not limited to any particular number of characters in your font, nor to a particular number of characters to render.

If you are sure that you do not have more than 256 characters in your font, texture arrays may be worth a consideration to strip off bus bandwidth in a similar manner as generating quads from points in the geometry shader. When using an array texture, the texture coordinates of all quads have identical, constant s and t coordinates and only differ in the r coordinate, which is equal to the character index to render.
But like with the other techniques, the expected gains are marginal at the cost of being incompatible with previous generation hardware.

There is a handy tool by Jonathan Dummer for generating distance textures: description page

link|improve this answer
Intersting - good stuff. How do these techniques work for making small fonts look as good as "soft" font specific rendering of antialiased fonts for document viewing in the 10 to 30 pixel high range? – peterk Feb 9 at 23:51
They look quite good (even with naive filtering and in absence of mipmapping, since you have very small textures and the data nicely interpolates). Personally I think they even look better than the "real" thing in many cases, because there are no oddities as hinting, which often produce things that I perceive as "weird". For example, smaller text doesn't suddenly get bold for no obvious reason, nor pop to pixel boundaries - effects you often see with "real" fonts. There may be historic reasons for that (1985 b/w displays), but today, it's beyond my comprehension why it has to be like that. – Damon Feb 10 at 12:23
sounds good !!! – peterk Feb 11 at 16:34
feedback

The most widespread technique is still textured quads. However in 2005 LORIA developed something called vector textures, i.e. rendering vector graphics as textures on primitives. If one uses this to convert TrueType or OpenType fonts into a vector texture you get this:

http://alice.loria.fr/index.php/publications.html?Paper=VTM@2005

link|improve this answer
feedback

I think your best bet would be to look into cairo graphics with OpenGL backend.

The only problem I had when developing a prototype with 3.3 core was deprecated function usage in OpenGL backend. It was 1-2 years ago so situation might have improved...

Anyway, I hope in the future desktop opengl graphics drivers will implement OpenVG.

link|improve this answer
feedback

One good place to start would be the font rendering survey on OpenGL.org.

My guess is that there's really not a lot to gain from writing something like a compute shader to handle rasterizing fonts -- the CPU can already do the job faster than anybody cares about. Even under Windows 3.1 on a 486/33 (or something on that order) rendering a screen full of text was virtually instantaneous...

link|improve this answer
Font rendering has changed a lot over the years. OpenGL does not have any native method of rendering text. Typically as mentioned in this thread, it is done by generating geometry, texture mapping it appropriately and rendering it on screen. If you are crazy you can generate 3d fonts or vector fonts, but they typically are much to performance heavy for the minimal improvements you can have. Back in the 486 days and dos, text rendering was a lot slower then you remember. Output to screen could be the bottleneck of a lot of console programs. – HaMMeReD Feb 21 at 6:41
feedback

There are really some good places to start with: see: http://ftgl.sourceforge.net/docs/html/ftgl-tutorial.html for example or.. http://code.google.com/p/freetype-gl/ or see the nehe tutorial: freetype_fonts_in_opengl .. all these technics work very well for me.

link|improve this answer
Thanks for offering your help, but the best (fastest and best-looking) of these techniques is what I mentioned in the question as well-known but outdated. – Ben Voigt May 20 at 13:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.