diff options
author | Corbin Simpson <[email protected]> | 2009-02-27 10:15:42 -0800 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-02-27 10:19:22 -0800 |
commit | c28298855bf5d5ef790d28bac2e77700625fa69a (patch) | |
tree | 23141710814ef80c1c7591db3d9ae5e0f25ae167 /src/gallium/drivers/r300/r300_reg.h | |
parent | 4ef8c047ea4cdbf9bc31920d58205620b857fe3c (diff) |
r300-gallium: Add RS block setup.
This is still icky, and only compile-tested.
Diffstat (limited to 'src/gallium/drivers/r300/r300_reg.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_reg.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_reg.h b/src/gallium/drivers/r300/r300_reg.h index 8888b39a2f9..8f31bd5d6e0 100644 --- a/src/gallium/drivers/r300/r300_reg.h +++ b/src/gallium/drivers/r300/r300_reg.h @@ -1240,9 +1240,11 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. #define R300_RS_INST_7 0x434C # define R300_RS_INST_TEX_ID(x) ((x) << 0) # define R300_RS_INST_TEX_CN_WRITE (1 << 3) +# define R300_RS_INST_TEX_ADDR(x) ((x) << 6) # define R300_RS_INST_TEX_ADDR_SHIFT 6 # define R300_RS_INST_COL_ID(x) ((x) << 11) # define R300_RS_INST_COL_CN_WRITE (1 << 14) +# define R300_RS_INST_COL_ADDR(x) ((x) << 17) # define R300_RS_INST_COL_ADDR_SHIFT 17 # define R300_RS_INST_TEX_ADJ (1 << 22) # define R300_RS_COL_BIAS_UNUSED_SHIFT 23 |