diff options
author | Dave Airlie <airliedfreedesktop.org> | 2005-10-21 06:20:27 +0000 |
---|---|---|
committer | Dave Airlie <airliedfreedesktop.org> | 2005-10-21 06:20:27 +0000 |
commit | eedc45709f080bd0600e6cfaa20b66057d5d89e8 (patch) | |
tree | 4e6a1f16440fa73a84798fbc3e6dce584a19306f /src/mesa/drivers | |
parent | f468dfde17e055f713bd8df14c34e2229c268255 (diff) |
add the tile bits for offset, and unk bit 31 of size
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/r300/r300_reg.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/r300/r300_reg.h b/src/mesa/drivers/dri/r300/r300_reg.h index 3ea4f4fe8c5..07c453027ba 100644 --- a/src/mesa/drivers/dri/r300/r300_reg.h +++ b/src/mesa/drivers/dri/r300/r300_reg.h @@ -698,6 +698,7 @@ I am fairly certain that they are correct unless stated otherwise in comments. # define R300_TX_UNK23 (1 << 23) # define R300_TX_SIZE_SHIFT 26 /* largest of width, height */ # define R300_TX_SIZE_MASK (15 << 26) +# define R300_TX_SIZE_UNK31 (1<<31) #define R300_TX_FORMAT_0 0x44C0 /* The interpretation of the format word by Wladimir van der Laan */ /* The X, Y, Z and W refer to the layout of the components. @@ -782,6 +783,8 @@ I am fairly certain that they are correct unless stated otherwise in comments. # define R300_TXO_ENDIAN_BYTE_SWAP (1 << 0) # define R300_TXO_ENDIAN_WORD_SWAP (2 << 0) # define R300_TXO_ENDIAN_HALFDW_SWAP (3 << 0) +# define R300_TXO_MACRO_TILE (1 << 2) +# define R300_TXO_MICRO_TILE (1 << 3) # define R300_TXO_OFFSET_MASK 0xffffffe0 # define R300_TXO_OFFSET_SHIFT 5 /* END */ |