On Sun, Jan 31, 2010 at 10:23 PM, Dave Calkins <[email protected]> wrote: > > I checked the FreeTypeGL source and it looks like its passing in the below > values. >> >> For FT_Load_Glyph, FT_LOAD_NO_HINTING | FT_LOAD_NO_BITMAP >> >> For FT_Render_Glyph, FT_RENDER_MODE_NORMAL >> >> Experimenting with these hasn't seemed to have any effect on the amount of >> smoothing (whether anti-aliasing or a result of hinting). >> >> Basically I guess I'd like fewer gray pixels :) Not sure how to get that >> result. >> > > Still haven't found the answer to this. However, if I'm correct in saying > that FreeType is generating a grayscale rendering of the glyph using > anti-aliasing, then is there some way to control how much anti-aliasing > FreeType applies when its rendering the glyph?
No. It's either anti-aliased or it isn't (FT_RENDER_MODE_MONO). Removing the FT_LOAD_NO_HINTING flag should affect the rendering in the way you have been asking. _______________________________________________ Freetype mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/freetype
