[win32] Compile fix for extend-pad extents.

Update the show_glyphs() prototype to include the extents argument.
This commit is contained in:
Chris Wilson 2008-11-04 10:31:48 +00:00
parent 5ba95b7e12
commit 3f18d38fbd
2 changed files with 4 additions and 2 deletions

View file

@ -1418,7 +1418,8 @@ _cairo_win32_printing_surface_show_glyphs (void *abstract_surfac
status = _cairo_win32_surface_show_glyphs (surface, op,
source, glyphs,
num_glyphs, scaled_font,
remaining_glyphs);
remaining_glyphs,
extents);
if (surface->has_ctm)
cairo_scaled_font_destroy (scaled_font);

View file

@ -145,7 +145,8 @@ _cairo_win32_surface_show_glyphs (void *surface,
cairo_glyph_t *glyphs,
int num_glyphs,
cairo_scaled_font_t *scaled_font,
int *remaining_glyphs);
int *remaining_glyphs,
cairo_rectangle_int_t *extents);
cairo_surface_t *
_cairo_win32_surface_create_similar (void *abstract_src,