diff options
author | Corbin Simpson <[email protected]> | 2009-02-27 12:23:16 -0800 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-02-27 12:25:09 -0800 |
commit | 49de8ec2eac7da8520c73d1a0f132b26e2fd1b9f (patch) | |
tree | 7bb6f5615f0e5a352a30c2c276bae6bbd9c65441 /src/gallium/drivers/r300/r300_reg.h | |
parent | 991c945e726311c9db6bea72a63e2a5cfb7ab37b (diff) |
r300-gallium: Properly split up RS into r300 and r500 variants.
Diffstat (limited to 'src/gallium/drivers/r300/r300_reg.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_reg.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_reg.h b/src/gallium/drivers/r300/r300_reg.h index 8f31bd5d6e0..b3b8f494999 100644 --- a/src/gallium/drivers/r300/r300_reg.h +++ b/src/gallium/drivers/r300/r300_reg.h @@ -732,6 +732,10 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. #define R500_RS_IP_TEX_PTR_Q_SHIFT 18 #define R500_RS_IP_COL_PTR_SHIFT 24 #define R500_RS_IP_COL_FMT_SHIFT 27 +# define R500_RS_SEL_S(x) ((x) << 0) +# define R500_RS_SEL_T(x) ((x) << 6) +# define R500_RS_SEL_R(x) ((x) << 12) +# define R500_RS_SEL_Q(x) ((x) << 18) # define R500_RS_COL_PTR(x) ((x) << 24) # define R500_RS_COL_FMT(x) ((x) << 27) /* gap */ |