mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-01-16 05:20:23 +01:00
Fix typo
This commit is contained in:
parent
dab7f6d7a5
commit
f12cb50b72
2 changed files with 6 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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++;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue