OLD | NEW |
1 /* | 1 /* |
2 * Copyright © 2009 Red Hat, Inc. | 2 * Copyright © 2009 Red Hat, Inc. |
3 * Copyright © 2011 Google, Inc. | 3 * Copyright © 2011 Google, Inc. |
4 * | 4 * |
5 * This is part of HarfBuzz, a text shaping library. | 5 * This is part of HarfBuzz, a text shaping library. |
6 * | 6 * |
7 * Permission is hereby granted, without written agreement and without | 7 * Permission is hereby granted, without written agreement and without |
8 * license or royalty fees, to use, copy, modify, and distribute this | 8 * license or royalty fees, to use, copy, modify, and distribute this |
9 * software and its documentation for any purpose, provided that the | 9 * software and its documentation for any purpose, provided that the |
10 * above copyright notice and the following two paragraphs appear in | 10 * above copyright notice and the following two paragraphs appear in |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 HB_SCRIPT_OLD_ITALIC, | 70 HB_SCRIPT_OLD_ITALIC, |
71 HB_SCRIPT_ORIYA, | 71 HB_SCRIPT_ORIYA, |
72 HB_SCRIPT_RUNIC, | 72 HB_SCRIPT_RUNIC, |
73 HB_SCRIPT_SINHALA, | 73 HB_SCRIPT_SINHALA, |
74 HB_SCRIPT_SYRIAC, | 74 HB_SCRIPT_SYRIAC, |
75 HB_SCRIPT_TAMIL, | 75 HB_SCRIPT_TAMIL, |
76 HB_SCRIPT_TELUGU, | 76 HB_SCRIPT_TELUGU, |
77 HB_SCRIPT_THAANA, | 77 HB_SCRIPT_THAANA, |
78 HB_SCRIPT_THAI, | 78 HB_SCRIPT_THAI, |
79 HB_SCRIPT_TIBETAN, | 79 HB_SCRIPT_TIBETAN, |
80 HB_SCRIPT_CANADIAN_ABORIGINAL, | 80 HB_SCRIPT_CANADIAN_SYLLABICS, |
81 HB_SCRIPT_YI, | 81 HB_SCRIPT_YI, |
82 HB_SCRIPT_TAGALOG, | 82 HB_SCRIPT_TAGALOG, |
83 HB_SCRIPT_HANUNOO, | 83 HB_SCRIPT_HANUNOO, |
84 HB_SCRIPT_BUHID, | 84 HB_SCRIPT_BUHID, |
85 HB_SCRIPT_TAGBANWA, | 85 HB_SCRIPT_TAGBANWA, |
86 | 86 |
87 /* Unicode-4.0 additions */ | 87 /* Unicode-4.0 additions */ |
88 HB_SCRIPT_BRAILLE, | 88 HB_SCRIPT_BRAILLE, |
89 HB_SCRIPT_CYPRIOT, | 89 HB_SCRIPT_CYPRIOT, |
90 HB_SCRIPT_LIMBU, | 90 HB_SCRIPT_LIMBU, |
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 { | 375 { |
376 #define HB_UNICODE_FUNC_IMPLEMENT(name) hb_glib_unicode_##name, | 376 #define HB_UNICODE_FUNC_IMPLEMENT(name) hb_glib_unicode_##name, |
377 HB_UNICODE_FUNCS_IMPLEMENT_CALLBACKS | 377 HB_UNICODE_FUNCS_IMPLEMENT_CALLBACKS |
378 #undef HB_UNICODE_FUNC_IMPLEMENT | 378 #undef HB_UNICODE_FUNC_IMPLEMENT |
379 } | 379 } |
380 }; | 380 }; |
381 | 381 |
382 return const_cast<hb_unicode_funcs_t *> (&_hb_glib_unicode_funcs); | 382 return const_cast<hb_unicode_funcs_t *> (&_hb_glib_unicode_funcs); |
383 } | 383 } |
384 | 384 |
OLD | NEW |