summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/i830/i830_texstate.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/drivers/dri/i830/i830_texstate.c')
-rw-r--r--src/mesa/drivers/dri/i830/i830_texstate.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i830/i830_texstate.c b/src/mesa/drivers/dri/i830/i830_texstate.c
index 6b8193c924..d5440141bf 100644
--- a/src/mesa/drivers/dri/i830/i830_texstate.c
+++ b/src/mesa/drivers/dri/i830/i830_texstate.c
@@ -159,8 +159,16 @@ static void i830SetTexImages( i830ContextPtr imesa,
break;
t->image[0][i].offset = total_height * pitch;
+ if (t->image[0][i].image->IsCompressed)
+ {
+ if (t->image[0][i].image->Height > 4)
+ total_height += t->image[0][i].image->Height/4;
+ else
+ total_height += 1;
+ }
+ else
+ total_height += t->image[0][i].image->Height;
t->image[0][i].internalFormat = baseImage->Format;
- total_height += t->image[0][i].image->Height;
}
t->Pitch = pitch;