summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Reveman <c99drn@cs.umu.se>2006-05-29 23:04:38 +0000
committerDavid Reveman <c99drn@cs.umu.se>2006-05-29 23:04:38 +0000
commitf12cb50b727d21ea2f119c82aabce956d9c82018 (patch)
tree3622186f911f24775ec16b723955e0337b9351ad
parentdab7f6d7a505acc84b269847d374fb64ece3d382 (diff)
Fix typo
-rw-r--r--ChangeLog5
-rw-r--r--hw/xgl/xglfill.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 63be60b71..74e53478c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/hw/xgl/xglfill.c b/hw/xgl/xglfill.c
index a71dad43d..51f4d801b 100644
--- a/hw/xgl/xglfill.c
+++ b/hw/xgl/xglfill.c
@@ -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++;
}