Mercurial > MadButterfly
annotate include/mb_config.h.in @ 969:d4b934d97a62
check range of pointer
author | Thinker K.F. Li <thinker@codemud.net> |
---|---|
date | Thu, 18 Nov 2010 12:02:21 +0800 |
parents | 586e50f82c1f |
children | 7b4e80ab671a |
rev | line source |
---|---|
822
586e50f82c1f
Unify coding style tag for emacs and vim.
Shih-Yuan Lee (FourDollars) <fourdollars@gmail.com>
parents:
654
diff
changeset
|
1 // -*- indent-tabs-mode: t; tab-width: 8; c-basic-offset: 4; -*- |
586e50f82c1f
Unify coding style tag for emacs and vim.
Shih-Yuan Lee (FourDollars) <fourdollars@gmail.com>
parents:
654
diff
changeset
|
2 // vim: sw=4:ts=8:sts=4 |
467
6e18550c8fa8
Header file to config graphic engine
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
3 #ifndef __MB_CONFIG_H_ |
6e18550c8fa8
Header file to config graphic engine
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
4 #define __MB_CONFIG_H_ |
6e18550c8fa8
Header file to config graphic engine
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
5 |
6e18550c8fa8
Header file to config graphic engine
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
6 /* Enable Cairo Graphic Engine */ |
6e18550c8fa8
Header file to config graphic engine
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
7 #undef CAIRO_GRAPH_ENGINE |
6e18550c8fa8
Header file to config graphic engine
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
8 |
6e18550c8fa8
Header file to config graphic engine
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
9 /* Enable Skia Graphic Engine */ |
6e18550c8fa8
Header file to config graphic engine
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
10 #undef SKIA_GRAPH_ENGINE |
6e18550c8fa8
Header file to config graphic engine
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
11 |
473
ba64f928542b
Remove mbe_matrix_t type.
Thinker K.F. Li <thinker@branda.to>
parents:
467
diff
changeset
|
12 /* Enable sh_text */ |
ba64f928542b
Remove mbe_matrix_t type.
Thinker K.F. Li <thinker@branda.to>
parents:
467
diff
changeset
|
13 #undef SH_TEXT |
ba64f928542b
Remove mbe_matrix_t type.
Thinker K.F. Li <thinker@branda.to>
parents:
467
diff
changeset
|
14 |
ba64f928542b
Remove mbe_matrix_t type.
Thinker K.F. Li <thinker@branda.to>
parents:
467
diff
changeset
|
15 /* Enable sh_stext */ |
ba64f928542b
Remove mbe_matrix_t type.
Thinker K.F. Li <thinker@branda.to>
parents:
467
diff
changeset
|
16 #undef SH_STEXT |
ba64f928542b
Remove mbe_matrix_t type.
Thinker K.F. Li <thinker@branda.to>
parents:
467
diff
changeset
|
17 |
474
00f6b36ec5d2
Conditional include mb_X_supp.h according X_SUPP
Thinker K.F. Li <thinker@branda.to>
parents:
473
diff
changeset
|
18 /* Enable X backend */ |
654
21f944e79b19
Use --with-backend to specify display backend.
Shih-Yuan Lee (FourDollars) <fourdollars@gmail.com>
parents:
474
diff
changeset
|
19 #undef X_BACKEND |
21f944e79b19
Use --with-backend to specify display backend.
Shih-Yuan Lee (FourDollars) <fourdollars@gmail.com>
parents:
474
diff
changeset
|
20 |
21f944e79b19
Use --with-backend to specify display backend.
Shih-Yuan Lee (FourDollars) <fourdollars@gmail.com>
parents:
474
diff
changeset
|
21 /* Enable DirectFB backend */ |
21f944e79b19
Use --with-backend to specify display backend.
Shih-Yuan Lee (FourDollars) <fourdollars@gmail.com>
parents:
474
diff
changeset
|
22 #undef DFB_BACKEND |
474
00f6b36ec5d2
Conditional include mb_X_supp.h according X_SUPP
Thinker K.F. Li <thinker@branda.to>
parents:
473
diff
changeset
|
23 |
467
6e18550c8fa8
Header file to config graphic engine
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
24 #endif /* __MB_CONFIG_H_ */ |