
14 Apr
2007
14 Apr
'07
2:34 a.m.
On 4/13/07, Phil Endecott <spam_from_boost_dev@chezphil.org> wrote:
//Step 1. Initialize the freetype library FT_Library library; FT_Face face; FT_Init_FreeType(&library); FT_New_Face(library,"c:/fonts/mini/ARGOW___.TTF",0,&face); FT_Set_Pixel_Sizes(face,0,12);
Can you wrap all this up inside boost::freetype::library and boost::freetype::face classes?
I'd rather we not call it freetype at all - wrap it up as a generic text renderer, that just happens to use freetype underneath. No reason to expose that it is freetype. Tony