summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_rast_tri.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_rast_tri.c')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_rast_tri.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_rast_tri.c b/src/gallium/drivers/llvmpipe/lp_rast_tri.c
index 1041cd2463..6b5bee4af3 100644
--- a/src/gallium/drivers/llvmpipe/lp_rast_tri.c
+++ b/src/gallium/drivers/llvmpipe/lp_rast_tri.c
@@ -179,7 +179,7 @@ void lp_rast_triangle( struct lp_rasterizer *rast,
/* Clamp to tile dimensions:
*/
- int minx = MAX2(tri->maxx, rast->x);
+ int minx = MAX2(tri->minx, rast->x);
int miny = MAX2(tri->miny, rast->y);
int maxx = MIN2(tri->maxx, rast->x + TILE_SIZE);
int maxy = MIN2(tri->maxy, rast->y + TILE_SIZE);