diff options
author | Felix Kuehling <[email protected]> | 2004-03-07 23:32:31 +0000 |
---|---|---|
committer | Felix Kuehling <[email protected]> | 2004-03-07 23:32:31 +0000 |
commit | a5c68c872ddcac6b844aa666edee72196af93a4a (patch) | |
tree | a0e6819c136710cf578bcd2228cf48d91fb30bd0 /src | |
parent | 156df3e83417149efc1f18e9e47ed7d5dbba629c (diff) |
Fixed texture tiling format for 8bit texels on ProSavage and Twister.
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/savage/savagetex.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/drivers/dri/savage/savagetex.c b/src/mesa/drivers/dri/savage/savagetex.c index f92d3ba4d5c..45d347b0bee 100644 --- a/src/mesa/drivers/dri/savage/savagetex.c +++ b/src/mesa/drivers/dri/savage/savagetex.c @@ -52,11 +52,11 @@ * x 1 */ static const savageTileInfo tileInfo_pro[5] = { - {64, 64, 8, 8, 8, 8, {0x12, 0x02}}, /* 4-bit */ - {64, 32, 8, 4, 8, 8, {0x24, 0x04}}, /* 8-bit */ - {64, 16, 8, 2, 8, 8, {0x48, 0x08}}, /* 16-bit */ - { 0, 0, 0, 0, 0, 0, {0x00, 0x00}}, /* 24-bit */ - {32, 16, 4, 2, 8, 8, {0x90, 0x10}}, /* 32-bit */ + {64, 64, 8, 8, 8, 8, {0x12, 0x02}}, /* 4-bit */ + {64, 32, 16, 4, 4, 8, {0x30, 0x20}}, /* 8-bit */ + {64, 16, 8, 2, 8, 8, {0x48, 0x08}}, /* 16-bit */ + { 0, 0, 0, 0, 0, 0, {0x00, 0x00}}, /* 24-bit */ + {32, 16, 4, 2, 8, 8, {0x90, 0x10}}, /* 32-bit */ }; /* Size 1, 2 and 4 images are packed into the last two subtiles. Each |