I wanted to see how it looks without antialiasing so I tried changing:
Error = FT_Load_Char(FontFace, Charset, FT_LOAD_TARGET_NORMAL);
with:
Error = FT_Load_Char(FontFace, Charset, FT_LOAD_TARGET_MONO);
and:
FT_Glyph_To_Bitmap(&Glyph,FT_RENDER_MODE_NORMAL, 0, 1);
with:
FT_Glyph_To_Bitmap(&Glyph,FT_RENDER_MODE_MONO, 0, 1);
But it doesn't work. All I get is a pixel mess where the non-antialiased text should be. Any idea why? Thanks