summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2012-02-20 11:07:00 -0700
committerBrian Paul <brianp@vmware.com>2012-02-24 08:03:09 -0700
commitdf22829b9c984a826a0b2e39dd6badac2029996d (patch)
tree760b2350dece1b42d8ae72a390a7ddc44e634707
parent3f8a61ffa256b4fe36e93a0904b8893c805eb313 (diff)
dri/swrast: use SWRAST_MAX_WIDTH/HEIGHT
-rw-r--r--src/mesa/drivers/dri/swrast/swrast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/swrast/swrast.c b/src/mesa/drivers/dri/swrast/swrast.c
index d18dd092780..22d71bf1024 100644
--- a/src/mesa/drivers/dri/swrast/swrast.c
+++ b/src/mesa/drivers/dri/swrast/swrast.c
@@ -469,7 +469,7 @@ dri_create_buffer(__DRIscreen * sPriv,
dPriv->driverPrivate = drawable;
drawable->dPriv = dPriv;
- drawable->row = malloc(MAX_WIDTH * 4);
+ drawable->row = malloc(SWRAST_MAX_WIDTH * 4);
if (drawable->row == NULL)
goto drawable_fail;