summaryrefslogtreecommitdiff
path: root/src/xftdraw.c
diff options
context:
space:
mode:
authorKaleb Keithley <kaleb@freedesktop.org>2003-11-25 19:28:09 +0000
committerKaleb Keithley <kaleb@freedesktop.org>2003-11-25 19:28:09 +0000
commit1781965aa5fac8f0737251ca883301e1aec7b12b (patch)
tree564785607517c63f64f4eb098fc7c91690469bd6 /src/xftdraw.c
parentac1033d4dc0ff95ab31dd2eb4752e7b4520fe819 (diff)
downloadxorg-lib-libXft-1781965aa5fac8f0737251ca883301e1aec7b12b.tar.gz
XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folksxf86-4_3_99_903_specialxf86-4_3_99_902xf86-4_3_99_901xf86-4_3_99_16xf86-012804-2330
Diffstat (limited to 'src/xftdraw.c')
-rw-r--r--src/xftdraw.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xftdraw.c b/src/xftdraw.c
index d70266c..e25bf5b 100644
--- a/src/xftdraw.c
+++ b/src/xftdraw.c
@@ -1,5 +1,5 @@
/*
- * $XFree86: xc/lib/Xft/xftdraw.c,v 1.25 2002/10/11 17:53:02 keithp Exp $
+ * $XFree86: xc/lib/Xft/xftdraw.c,v 1.26 2003/04/03 22:25:50 dawes Exp $
*
* Copyright © 2000 Keith Packard, member of The XFree86 Project, Inc.
*
@@ -724,7 +724,7 @@ XftDrawGlyphFontSpec (XftDraw *draw,
{
XftGlyphFontSpecRender (draw->dpy, _XftDrawOp (draw, color),
src, draw->render.pict,
- 0, 0, glyphs, i - start);
+ 0, 0, glyphs + start , i - start);
}
}
else
@@ -732,7 +732,7 @@ XftDrawGlyphFontSpec (XftDraw *draw,
while (i < len && !((XftFontInt *) glyphs[i].font)->format)
i++;
if (_XftDrawCorePrepare (draw, color))
- XftGlyphFontSpecCore (draw, color, glyphs, len);
+ XftGlyphFontSpecCore (draw, color, glyphs + start, i - start);
}
}
}