Add 128th flags
[lilypond.git] / lily / freetype.cc
blobbcf8a3ca5face2787711f40104142800906f5e98
1 /*
2 freetype.cc -- implement Freetype routines.
4 source file of the GNU LilyPond music typesetter
6 (c) 2004--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
9 #include "freetype.hh"
10 #include "warn.hh"
12 FT_Library freetype2_library;
14 void
15 init_freetype ()
17 int errorcode = FT_Init_FreeType (&freetype2_library);
18 if (errorcode)
19 error ("cannot initialize FreeType");