Merge branch 'fret-diagram-details'
[lilypond/csorensen.git] / lily / freetype.cc
blob18882125d64c48f9e1073ab81688a940240524c0
1 /*
2 freetype.cc -- implement Freetype routines.
4 source file of the GNU LilyPond music typesetter
6 (c) 2004--2007 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");