diff options
author | Corbin Simpson <[email protected]> | 2009-03-05 11:59:22 -0800 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-03-05 12:41:54 -0800 |
commit | 0b723b8b89cd65901431199f86911f003465946e (patch) | |
tree | 2ef9f8010cc3f3ddd7a309e1604e23aac2a9c516 /src/gallium/drivers/r300/r300_reg.h | |
parent | ac2acda036c208d963fefac27d7300e017c74527 (diff) |
r300-gallium: Move RS block setup to CSO.
Diffstat (limited to 'src/gallium/drivers/r300/r300_reg.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_reg.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_reg.h b/src/gallium/drivers/r300/r300_reg.h index e0da9d361e4..e10d2373bb6 100644 --- a/src/gallium/drivers/r300/r300_reg.h +++ b/src/gallium/drivers/r300/r300_reg.h @@ -1150,6 +1150,9 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. # define R300_W_ADDR_MASK 0x0003f000 # define R300_HIRES_DIS (0 << 18) # define R300_HIRES_EN (1 << 18) +# define R300_IT_COUNT(x) ((x) << 0) +# define R300_IC_COUNT(x) ((x) << 7) +# define R300_W_COUNT(x) ((x) << 12) #define R300_RS_INST_COUNT 0x4304 # define R300_RS_INST_COUNT_SHIFT 0 |