]> git.donarmstrong.com Git - lilypond.git/blob - lily/freetype.cc
new file.
[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--2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
7
8 */
9
10 #include "freetype.hh"
11 #include "warn.hh"
12
13 FT_Library freetype2_library;
14
15
16 void
17 init_freetype()
18 {
19   int errorcode = FT_Init_FreeType( &freetype2_library );
20   if (errorcode)
21     {
22       error("Could  not initialize freetype");
23     }
24 }
25