summaryrefslogtreecommitdiff
path: root/hw/xgl/xglfill.c
diff options
context:
space:
mode:
authorDavid Reveman <c99drn@cs.umu.se>2005-03-11 12:26:20 +0000
committerDavid Reveman <c99drn@cs.umu.se>2005-03-11 12:26:20 +0000
commit816606b9eabee334ce6e0b79e8aa67544f428c19 (patch)
treebf15edaf918dc863d391e14be7f5e78d3ed4140a /hw/xgl/xglfill.c
parent4de5aa428514f2cacc60d4708dad996dedee1092 (diff)
Return early from xglFillRect when no rectangles should be filled
Diffstat (limited to 'hw/xgl/xglfill.c')
-rw-r--r--hw/xgl/xglfill.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/hw/xgl/xglfill.c b/hw/xgl/xglfill.c
index 7832df27e..573484782 100644
--- a/hw/xgl/xglfill.c
+++ b/hw/xgl/xglfill.c
@@ -178,6 +178,9 @@ xglFillRect (DrawablePtr pDrawable,
}
}
+ if (!nBox)
+ return;
+
pBox = (heapBox) ? heapBox : stackBox;
if (!xglFill (pDrawable, pGC, NULL,
@@ -206,7 +209,7 @@ xglFillRect (DrawablePtr pDrawable,
FatalError (XGL_SW_FAILURE_STRING);
break;
}
-
+
REGION_INIT (pGC->pScreen, &region, pBox, nBox);
while (nBox--)