summaryrefslogtreecommitdiff
path: root/pango/pango-engine.c
diff options
context:
space:
mode:
Diffstat (limited to 'pango/pango-engine.c')
-rw-r--r--pango/pango-engine.c19
1 files changed, 12 insertions, 7 deletions
diff --git a/pango/pango-engine.c b/pango/pango-engine.c
index 7b2c2fd6..8a3369f3 100644
--- a/pango/pango-engine.c
+++ b/pango/pango-engine.c
@@ -82,20 +82,25 @@ pango_engine_shape_class_init (PangoEngineShapeClass *class)
}
void
-_pango_engine_shape_shape (PangoEngineShape *engine,
- PangoFont *font,
- const char *text,
- int length,
+_pango_engine_shape_shape (PangoEngineShape *engine,
+ PangoFont *font,
+ const char *item_text,
+ unsigned int item_length,
+ const char *paragraph_text,
+ unsigned int paragraph_len,
const PangoAnalysis *analysis,
- PangoGlyphString *glyphs)
+ PangoGlyphString *glyphs)
{
glyphs->num_glyphs = 0;
PANGO_ENGINE_SHAPE_GET_CLASS (engine)->script_shape (engine,
font,
- text, length,
+ item_text,
+ item_length,
analysis,
- glyphs);
+ glyphs,
+ paragraph_text,
+ paragraph_len);
}
PangoCoverageLevel