Here were the clues to the problem:<\/p>\n
<\/p>\n
Under the hood, VectorStorm uses BMFont<\/a>-style font rendering.\u00a0 We build a model for each text string, with a rectangle for each glyph, and those rectangles are drawn using a texture which contains the glyphs of the font.\u00a0 I make the rendering pixel-exact by ensuring that the pixels of each rectangle’s texture are aligned precisely with the pixels of the screen, so that each screen pixel is sampling from just one texture pixel.\u00a0 If the pixels of the texture aren’t quite aligned with the pixels of the screen, each screen pixel blends between multiple texture pixels, and you wind up with a blurry appearance.\u00a0 I line up the pixels by ensuring that the text is placed at an integral position.\u00a0 That is, if I draw a letter at (1,1) or (2,2) or (203,112), it will be aligned with screen pixels.\u00a0 If I draw it at (1.5,1.0) or at (2,7.1), or at any other coordinate which contains a decimal point, it won’t be aligned, and so will result in blurry text.<\/p>\n
Here’s a screenshot where you can see the problem in situ (click for full-size):<\/p>\n