FreeWRL / FreeX3D 4.3.0
system_fonts.h
1/*
2
3
4FreeWRL support library.
5Internal header: fonts dependencies.
6
7*/
8
9/****************************************************************************
10 This file is part of the FreeWRL/FreeX3D Distribution.
11
12 Copyright 2009 CRC Canada. (http://www.crc.gc.ca)
13
14 FreeWRL/FreeX3D is free software: you can redistribute it and/or modify
15 it under the terms of the GNU Lesser Public License as published by
16 the Free Software Foundation, either version 3 of the License, or
17 (at your option) any later version.
18
19 FreeWRL/FreeX3D is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with FreeWRL/FreeX3D. If not, see <http://www.gnu.org/licenses/>.
26****************************************************************************/
27
28
29#ifndef __LIBFREEWRL_SYSTEM_FONTS_H__
30#define __LIBFREEWRL_SYSTEM_FONTS_H__
31
32#ifdef HAVE_FONTCONFIG
33#include <fontconfig/fontconfig.h>
34#endif
35
36#include <ft2build.h>
37#include FT_FREETYPE_H
38#include FT_GLYPH_H
39#include FT_OUTLINE_H
40
41
42#endif /* __LIBFREEWRL_SYSTEM_FONTS_H__ */