summaryrefslogtreecommitdiff
path: root/pango/fonts.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2019-07-18 23:36:43 +0000
committerMatthias Clasen <mclasen@redhat.com>2019-07-18 23:36:43 +0000
commit1b63d2a36fe6fef9276053945fa9edd3ccc7a716 (patch)
tree9ad5d9e3e67b85197a4c41c9934ec84f84e6bd28 /pango/fonts.c
parent5c74e9e573d9af5995c1e1aa44538561788dcdc3 (diff)
parent4212fa6a2b8581d9e1c2074c1130d94895d68a61 (diff)
downloadpango-1b63d2a36fe6fef9276053945fa9edd3ccc7a716.tar.gz
Merge branch 'wip/kill-shape-engine' into 'master'
Kill shape engines See merge request GNOME/pango!75
Diffstat (limited to 'pango/fonts.c')
-rw-r--r--pango/fonts.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/pango/fonts.c b/pango/fonts.c
index 10e5463d..2cfab161 100644
--- a/pango/fonts.c
+++ b/pango/fonts.c
@@ -1720,20 +1720,14 @@ pango_font_get_coverage (PangoFont *font,
* language tag and character point.
*
* Return value: (transfer none): the best matching shaper.
+ * Deprecated: Shape engines are no longer used
**/
PangoEngineShape *
pango_font_find_shaper (PangoFont *font,
PangoLanguage *language,
guint32 ch)
{
- PangoEngineShape* shaper;
-
- if (G_UNLIKELY (!font))
- return NULL;
-
- shaper = PANGO_FONT_GET_CLASS (font)->find_shaper (font, language, ch);
-
- return shaper;
+ return NULL;
}
/**