Index: third_party/harfbuzz-ng/src/hb-ft.h |
diff --git a/third_party/harfbuzz-ng/src/hb-ft.h b/third_party/harfbuzz-ng/src/hb-ft.h |
index 92f4b3614415503a939da9409b3794d85e7d7b7b..4bbc8265807b0437ff9e787a6e253f2668621136 100644 |
--- a/third_party/harfbuzz-ng/src/hb-ft.h |
+++ b/third_party/harfbuzz-ng/src/hb-ft.h |
@@ -1,5 +1,6 @@ |
/* |
* Copyright © 2009 Red Hat, Inc. |
+ * Copyright © 2015 Google, Inc. |
* |
* This is part of HarfBuzz, a text shaping library. |
* |
@@ -22,6 +23,7 @@ |
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
* |
* Red Hat Author(s): Behdad Esfahbod |
+ * Google Author(s): Behdad Esfahbod |
*/ |
#ifndef HB_FT_H |
@@ -105,14 +107,19 @@ hb_ft_font_create (FT_Face ft_face, |
hb_font_t * |
hb_ft_font_create_referenced (FT_Face ft_face); |
+FT_Face |
+hb_ft_font_get_face (hb_font_t *font); |
+ |
+void |
+hb_ft_font_set_load_flags (hb_font_t *font, int load_flags); |
+ |
+int |
+hb_ft_font_get_load_flags (hb_font_t *font); |
/* Makes an hb_font_t use FreeType internally to implement font functions. */ |
void |
hb_ft_font_set_funcs (hb_font_t *font); |
-FT_Face |
-hb_ft_font_get_face (hb_font_t *font); |
- |
HB_END_DECLS |