1 //----------------------------------------------------------------------------
2 // Anti-Grain Geometry (AGG) - Version 2.5
3 // A high quality rendering engine for C++
4 // Copyright (C) 2002-2006 Maxim Shemanarev
5 // Contact: mcseem@antigrain.com
6 //          mcseemagg@yahoo.com
7 //          http://antigrain.com
8 //
9 // AGG is free software; you can redistribute it and/or
10 // modify it under the terms of the GNU General Public License
11 // as published by the Free Software Foundation; either version 2
12 // of the License, or (at your option) any later version.
13 //
14 // AGG is distributed in the hope that it will be useful,
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 // GNU General Public License for more details.
18 //
19 // You should have received a copy of the GNU General Public License
20 // along with AGG; if not, write to the Free Software
21 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
22 // MA 02110-1301, USA.
23 //----------------------------------------------------------------------------
24 
25 #ifndef AGG_EMBEDDED_RASTER_FONTS_INCLUDED
26 #define AGG_EMBEDDED_RASTER_FONTS_INCLUDED
27 
28 #include "agg_basics.h"
29 
30 namespace agg
31 {
32     extern const int8u gse4x6[];
33     extern const int8u gse4x8[];
34     extern const int8u gse5x7[];
35     extern const int8u gse5x9[];
36     extern const int8u gse6x12[];
37     extern const int8u gse6x9[];
38     extern const int8u gse7x11[];
39     extern const int8u gse7x11_bold[];
40     extern const int8u gse7x15[];
41     extern const int8u gse7x15_bold[];
42     extern const int8u gse8x16[];
43     extern const int8u gse8x16_bold[];
44     extern const int8u mcs11_prop[];
45     extern const int8u mcs11_prop_condensed[];
46     extern const int8u mcs12_prop[];
47     extern const int8u mcs13_prop[];
48     extern const int8u mcs5x10_mono[];
49     extern const int8u mcs5x11_mono[];
50     extern const int8u mcs6x10_mono[];
51     extern const int8u mcs6x11_mono[];
52     extern const int8u mcs7x12_mono_high[];
53     extern const int8u mcs7x12_mono_low[];
54     extern const int8u verdana12[];
55     extern const int8u verdana12_bold[];
56     extern const int8u verdana13[];
57     extern const int8u verdana13_bold[];
58     extern const int8u verdana14[];
59     extern const int8u verdana14_bold[];
60     extern const int8u verdana16[];
61     extern const int8u verdana16_bold[];
62     extern const int8u verdana17[];
63     extern const int8u verdana17_bold[];
64     extern const int8u verdana18[];
65     extern const int8u verdana18_bold[];
66 }
67 
68 #endif
69