diff --git a/Source/Utilities/Graphics/Text/GL1TextOutputProvider.cs b/Source/Utilities/Graphics/Text/GL1TextOutputProvider.cs index e36c5f0a..98f4c03e 100644 --- a/Source/Utilities/Graphics/Text/GL1TextOutputProvider.cs +++ b/Source/Utilities/Graphics/Text/GL1TextOutputProvider.cs @@ -89,7 +89,8 @@ namespace OpenTK.Graphics.Text int current = 0; foreach (Glyph glyph in block) { - if (glyph.IsWhiteSpace) + // Do not render whitespace characters or characters outside the clip rectangle. + if (glyph.IsWhiteSpace || extents[current].Width == 0 || extents[current].Height == 0) { current++; continue;