[cairo-commit] src/cairo-ps-surface.c
Adrian Johnson
ajohnson at kemper.freedesktop.org
Wed Nov 28 14:50:49 PST 2007
src/cairo-ps-surface.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 5e8f60531a09f357db38c4b646b1bbd29b97a891
Author: Adrian Johnson <ajohnson at redneon.com>
Date: Thu Nov 29 09:20:01 2007 +1030
PS: Ensure that xyshow operator has a pair of offsets for each glyph
The last entry should have been "0 0" instead of "0".
diff --git a/src/cairo-ps-surface.c b/src/cairo-ps-surface.c
index 71fa6bd..0a0f841 100644
--- a/src/cairo-ps-surface.c
+++ b/src/cairo-ps-surface.c
@@ -3149,7 +3149,7 @@ _cairo_ps_surface_show_glyphs (void *abstract_surface,
} else {
for (j = i; j < last+1; j++) {
if (j == num_glyphs_unsigned - 1)
- _cairo_output_stream_printf (word_wrap, "0 ");
+ _cairo_output_stream_printf (word_wrap, "0 0 ");
else
_cairo_output_stream_printf (word_wrap,
"%f %f ",
More information about the cairo-commit
mailing list