This commit is contained in:
David Reveman 2006-05-29 23:04:38 +00:00
parent dab7f6d7a5
commit f12cb50b72
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2006-05-30 David Reveman <davidr@novell.com>
* hw/xgl/xglfill.c (xglFillSegment): Fix typo that caused some
vertical lines to not be rendered.
2006-05-26 David Reveman <davidr@novell.com>
* hw/xgl/xglfill.c (xglFillSegment): Adjust for capStyle correctly.

View file

@ -613,7 +613,7 @@ xglFillSegment (DrawablePtr pDrawable,
else
{
full.y1 = pSegInit->y2;
full.y2 = pSegInit->y1;
full.y2 = pSegInit->y1 + 1;
if (pGC->capStyle == CapNotLast)
full.y1++;
}