Mercurial > MadButterfly
annotate include/mb_config.h.in @ 480:e813ac222f48 Android_Skia
Merge add colors into constructor of gradient pattern.
Since we also define color stops for gradient pattern and rear change
it, mbe_pattern_add_color_stop_rgba() is merged into
mb_pattern_create_radial() and mb_pattern_create_linear(). It also
makes porting to graphic engines easier.
author | Thinker K.F. Li <thinker@branda.to> |
---|---|
date | Sun, 15 Nov 2009 16:21:09 +0800 |
parents | 00f6b36ec5d2 |
children | e2c9117b1e12 21f944e79b19 |
rev | line source |
---|---|
467
6e18550c8fa8
Header file to config graphic engine
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
1 #ifndef __MB_CONFIG_H_ |
6e18550c8fa8
Header file to config graphic engine
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
2 #define __MB_CONFIG_H_ |
6e18550c8fa8
Header file to config graphic engine
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
3 |
6e18550c8fa8
Header file to config graphic engine
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
4 /* Enable Cairo Graphic Engine */ |
6e18550c8fa8
Header file to config graphic engine
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
5 #undef CAIRO_GRAPH_ENGINE |
6e18550c8fa8
Header file to config graphic engine
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
6 |
6e18550c8fa8
Header file to config graphic engine
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
7 /* Enable Skia Graphic Engine */ |
6e18550c8fa8
Header file to config graphic engine
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
8 #undef SKIA_GRAPH_ENGINE |
6e18550c8fa8
Header file to config graphic engine
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
9 |
473
ba64f928542b
Remove mbe_matrix_t type.
Thinker K.F. Li <thinker@branda.to>
parents:
467
diff
changeset
|
10 /* Enable sh_text */ |
ba64f928542b
Remove mbe_matrix_t type.
Thinker K.F. Li <thinker@branda.to>
parents:
467
diff
changeset
|
11 #undef SH_TEXT |
ba64f928542b
Remove mbe_matrix_t type.
Thinker K.F. Li <thinker@branda.to>
parents:
467
diff
changeset
|
12 |
ba64f928542b
Remove mbe_matrix_t type.
Thinker K.F. Li <thinker@branda.to>
parents:
467
diff
changeset
|
13 /* Enable sh_stext */ |
ba64f928542b
Remove mbe_matrix_t type.
Thinker K.F. Li <thinker@branda.to>
parents:
467
diff
changeset
|
14 #undef SH_STEXT |
ba64f928542b
Remove mbe_matrix_t type.
Thinker K.F. Li <thinker@branda.to>
parents:
467
diff
changeset
|
15 |
474
00f6b36ec5d2
Conditional include mb_X_supp.h according X_SUPP
Thinker K.F. Li <thinker@branda.to>
parents:
473
diff
changeset
|
16 /* Enable X backend */ |
00f6b36ec5d2
Conditional include mb_X_supp.h according X_SUPP
Thinker K.F. Li <thinker@branda.to>
parents:
473
diff
changeset
|
17 #undef X_SUPP |
00f6b36ec5d2
Conditional include mb_X_supp.h according X_SUPP
Thinker K.F. Li <thinker@branda.to>
parents:
473
diff
changeset
|
18 |
467
6e18550c8fa8
Header file to config graphic engine
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
19 #endif /* __MB_CONFIG_H_ */ |