From: Michel Dänzer Date: Tue, 15 Dec 2009 23:37:40 +0000 (+0100) Subject: r300: Fix typo on < R5xx RS setup for blits. X-Git-Tag: 062012170305~12852^2~2191 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bc443d841c84977abd88d3be3d78287480fbe72d;p=profile%2Fivi%2Fmesa.git r300: Fix typo on < R5xx RS setup for blits. --- diff --git a/src/mesa/drivers/dri/r300/r300_blit.c b/src/mesa/drivers/dri/r300/r300_blit.c index 3523c27..ca6dd3b 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(); }