OLD | NEW |
1 /* | 1 /* |
2 * Copyright © 2012 Google, Inc. | 2 * Copyright © 2012 Google, Inc. |
3 * | 3 * |
4 * This is part of HarfBuzz, a text shaping library. | 4 * This is part of HarfBuzz, a text shaping library. |
5 * | 5 * |
6 * Permission is hereby granted, without written agreement and without | 6 * Permission is hereby granted, without written agreement and without |
7 * license or royalty fees, to use, copy, modify, and distribute this | 7 * license or royalty fees, to use, copy, modify, and distribute this |
8 * software and its documentation for any purpose, provided that the | 8 * software and its documentation for any purpose, provided that the |
9 * above copyright notice and the following two paragraphs appear in | 9 * above copyright notice and the following two paragraphs appear in |
10 * all copies of this software. | 10 * all copies of this software. |
(...skipping 16 matching lines...) Expand all Loading... |
27 #ifndef HB_SHAPER_LIST_HH | 27 #ifndef HB_SHAPER_LIST_HH |
28 #define HB_SHAPER_LIST_HH | 28 #define HB_SHAPER_LIST_HH |
29 #endif /* HB_SHAPER_LIST_HH */ /* Dummy header guards */ | 29 #endif /* HB_SHAPER_LIST_HH */ /* Dummy header guards */ |
30 | 30 |
31 /* v--- Add new shapers in the right place here. */ | 31 /* v--- Add new shapers in the right place here. */ |
32 | 32 |
33 #ifdef HAVE_GRAPHITE2 | 33 #ifdef HAVE_GRAPHITE2 |
34 /* Only picks up fonts that have a "Silf" table. */ | 34 /* Only picks up fonts that have a "Silf" table. */ |
35 HB_SHAPER_IMPLEMENT (graphite2) | 35 HB_SHAPER_IMPLEMENT (graphite2) |
36 #endif | 36 #endif |
| 37 #ifdef HAVE_CORETEXT |
| 38 /* Only picks up fonts that have a "mort" or "morx" table. */ |
| 39 HB_SHAPER_IMPLEMENT (coretext_aat) |
| 40 #endif |
37 | 41 |
38 #ifdef HAVE_OT | 42 #ifdef HAVE_OT |
39 HB_SHAPER_IMPLEMENT (ot) /* <--- This is our main OpenType shaper. */ | 43 HB_SHAPER_IMPLEMENT (ot) /* <--- This is our main OpenType shaper. */ |
40 #endif | 44 #endif |
41 | 45 |
42 #ifdef HAVE_HB_OLD | |
43 HB_SHAPER_IMPLEMENT (old) | |
44 #endif | |
45 #ifdef HAVE_ICU_LE | |
46 HB_SHAPER_IMPLEMENT (icu_le) | |
47 #endif | |
48 #ifdef HAVE_UNISCRIBE | 46 #ifdef HAVE_UNISCRIBE |
49 HB_SHAPER_IMPLEMENT (uniscribe) | 47 HB_SHAPER_IMPLEMENT (uniscribe) |
50 #endif | 48 #endif |
51 #ifdef HAVE_CORETEXT | 49 #ifdef HAVE_CORETEXT |
52 HB_SHAPER_IMPLEMENT (coretext) | 50 HB_SHAPER_IMPLEMENT (coretext) |
53 #endif | 51 #endif |
54 | 52 |
| 53 #ifdef HAVE_FALLBACK |
55 HB_SHAPER_IMPLEMENT (fallback) /* <--- This should be last. */ | 54 HB_SHAPER_IMPLEMENT (fallback) /* <--- This should be last. */ |
| 55 #endif |
OLD | NEW |