summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2011-04-19 00:37:56 -0400
committerBehdad Esfahbod <behdad@behdad.org>2011-04-19 00:37:56 -0400
commit315d5c91c89fb41eec64d00b42e38eb2117fbfa4 (patch)
treeb6aca0dc0ac03a0b04fe86278df5d54132474ffb /modules
parent09b3b27fad48e34507cb1319fe1519c8de358c85 (diff)
downloadpango-315d5c91c89fb41eec64d00b42e38eb2117fbfa4.tar.gz
Update to HarfBuzz API changes
Diffstat (limited to 'modules')
-rw-r--r--modules/basic/basic-fc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/basic/basic-fc.c b/modules/basic/basic-fc.c
index 27112f91..9010ab68 100644
--- a/modules/basic/basic-fc.c
+++ b/modules/basic/basic-fc.c
@@ -279,8 +279,8 @@ basic_engine_shape (PangoEngineShape *engine G_GNUC_UNUSED,
/* buffer output */
num_glyphs = hb_buffer_get_length (hb_buffer);
- hb_glyph = hb_buffer_get_glyph_infos (hb_buffer);
- hb_position = hb_buffer_get_glyph_positions (hb_buffer);
+ hb_glyph = hb_buffer_get_glyph_infos (hb_buffer, NULL);
+ hb_position = hb_buffer_get_glyph_positions (hb_buffer, NULL);
pango_glyph_string_set_size (glyphs, num_glyphs);
last_cluster = -1;
for (i = 0; i < num_glyphs; i++)