From: Felix Kuehling Date: Thu, 4 Mar 2004 00:27:36 +0000 (+0000) Subject: Clearing rectangle was one too big in each direction. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2462f6bfa0ca71390439104f751310da89a69d1a;p=mesa.git Clearing rectangle was one too big in each direction. --- diff --git a/src/mesa/drivers/dri/savage/savageioctl.c b/src/mesa/drivers/dri/savage/savageioctl.c index e606fb95822..5eff31be146 100644 --- a/src/mesa/drivers/dri/savage/savageioctl.c +++ b/src/mesa/drivers/dri/savage/savageioctl.c @@ -61,8 +61,8 @@ static void savage_BCI_clear(GLcontext *ctx, drm_savage_clear_t *pclear) for (i = 0 ; i < nbox ; i++, pbox++) { unsigned int x = pbox->x1; unsigned int y = pbox->y1; - unsigned int width = pbox->x2 - x+1; - unsigned int height = pbox->y2 - y+1; + unsigned int width = pbox->x2 - x; + unsigned int height = pbox->y2 - y; unsigned int *bciptr; if (pbox->x1 > pbox->x2 ||