diff options
| author | Michel Dänzer <daenzer@vmware.com> | 2009-12-16 00:37:40 +0100 | 
|---|---|---|
| committer | Michel Dänzer <michel@daenzer.net> | 2009-12-16 00:51:55 +0100 | 
| commit | bc443d841c84977abd88d3be3d78287480fbe72d (patch) | |
| tree | 6ff1fe88ed8b0feb393ef398a645eacf5c44f7e4 /src/mesa | |
| parent | 80e815639459367313cb0c2e5e32d978ed9fcd08 (diff) | |
r300: Fix typo on < R5xx RS setup for blits.
Diffstat (limited to 'src/mesa')
| -rw-r--r-- | src/mesa/drivers/dri/r300/r300_blit.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/mesa/drivers/dri/r300/r300_blit.c b/src/mesa/drivers/dri/r300/r300_blit.c index 3523c2792e..ca6dd3bcf8 100644 --- a/src/mesa/drivers/dri/r300/r300_blit.c +++ b/src/mesa/drivers/dri/r300/r300_blit.c @@ -315,8 +315,8 @@ static void r300_emit_rs_setup(struct r300_context *r300)      OUT_BATCH_REGVAL(R300_RS_IP_0,                       R300_RS_TEX_PTR(0) |                       R300_RS_SEL_S(R300_RS_SEL_C0) | -                     R300_RS_SEL_R(R300_RS_SEL_C1) | -                     R300_RS_SEL_T(R300_RS_SEL_K0) | +                     R300_RS_SEL_T(R300_RS_SEL_C1) | +                     R300_RS_SEL_R(R300_RS_SEL_K0) |                       R300_RS_SEL_Q(R300_RS_SEL_K1));      END_BATCH();  } | 
