From 63e9a968ffabb0d7adcfd39aeb2f019b943ebb59 Mon Sep 17 00:00:00 2001 From: Ville Syrjala Date: Sat, 16 Oct 2004 11:09:26 +0000 Subject: Fixed off by one errors in clipping. --- src/mesa/drivers/dri/mga/mgastate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mesa/drivers') diff --git a/src/mesa/drivers/dri/mga/mgastate.c b/src/mesa/drivers/dri/mga/mgastate.c index 6e63294f65..295d3f5a08 100644 --- a/src/mesa/drivers/dri/mga/mgastate.c +++ b/src/mesa/drivers/dri/mga/mgastate.c @@ -299,8 +299,8 @@ void mgaUpdateClipping(const GLcontext *ctx) int x1 = mmesa->driDrawable->x + ctx->Scissor.X; int y1 = mmesa->driDrawable->y + mmesa->driDrawable->h - (ctx->Scissor.Y + ctx->Scissor.Height); - int x2 = x1 + ctx->Scissor.Width - 1; - int y2 = y1 + ctx->Scissor.Height - 1; + int x2 = x1 + ctx->Scissor.Width; + int y2 = y1 + ctx->Scissor.Height; if (x1 < 0) x1 = 0; if (y1 < 0) y1 = 0; -- cgit v1.2.3