]> git.donarmstrong.com Git - lilypond.git/blob - lily/freetype.cc
Run `make grand-replace'.
[lilypond.git] / lily / freetype.cc
1 /*
2   freetype.cc -- implement Freetype routines.
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2004--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "freetype.hh"
10 #include "warn.hh"
11
12 FT_Library freetype2_library;
13
14 void
15 init_freetype ()
16 {
17   int errorcode = FT_Init_FreeType (&freetype2_library);
18   if (errorcode)
19     error ("cannot initialize FreeType");
20 }
21