From: Marek Olšák Date: Tue, 5 Apr 2011 00:44:03 +0000 (+0200) Subject: r300/compiler: set the MSB of ADDR for inline constants X-Git-Tag: 062012170305~6403 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c97234507ad7de36e57868ade22a11ea8de773a6;p=profile%2Fivi%2Fmesa.git r300/compiler: set the MSB of ADDR for inline constants The docs say so. --- diff --git a/src/mesa/drivers/dri/r300/compiler/r500_fragprog_emit.c b/src/mesa/drivers/dri/r300/compiler/r500_fragprog_emit.c index 2f8d6e4..9b5c7c6 100644 --- a/src/mesa/drivers/dri/r300/compiler/r500_fragprog_emit.c +++ b/src/mesa/drivers/dri/r300/compiler/r500_fragprog_emit.c @@ -197,11 +197,14 @@ static void use_temporary(struct r500_fragment_program_code* code, unsigned int static unsigned int use_source(struct r500_fragment_program_code* code, struct rc_pair_instruction_source src) { + /* From docs: + * Note that inline constants set the MSB of ADDR0 and clear ADDR0_CONST. + * MSB = 1 << 7 */ if (!src.Used) - return 0; + return 1 << 7; if (src.File == RC_FILE_CONSTANT) { - return src.Index | 0x100; + return src.Index | R500_RGB_ADDR0_CONST; } else if (src.File == RC_FILE_TEMPORARY) { use_temporary(code, src.Index); return src.Index;