aboutsummaryrefslogtreecommitdiff
path: root/tests/agg_font_render_test.cpp
AgeCommit message (Collapse)Author
2020-06-01Use font_renderer in aGG font testing programFrancesco Abbate
2020-06-01Render correctly codepoints in agg font render test and fix bounding boxFrancesco Abbate
2020-05-31Add correct glyphs bitmap location rects with AGGFrancesco Abbate
2020-05-30Adjust the font's height when creating the bitmapFrancesco Abbate
Now the font's height to compute the bitmap is computed correcty but: - STB truetype takes the pixel height as a float - AGG takes an integer
2020-05-30Add pixel format to render font in bitmap formatFrancesco Abbate
The purpose it to add later subpixel by storing the bitmap with RGB channels to have subpixel LCD coverage information. The colorization and gamma blending will be done when blitting the glyph on the destination surface.
2020-05-30Add correct font's height calculation using AGGFrancesco Abbate
Compute the height like in renderer.c
2020-05-30Add font vmetrics in AGG font renderer testFrancesco Abbate
2020-05-29Initial working version of agg font rendering testFrancesco Abbate
2020-05-29WIP: to use AGG font renderer to create a coverage bitmapFrancesco Abbate