comments
authorBrian <brian.paul@tungstengraphics.com>
Fri, 10 Aug 2007 01:04:28 +0000 (19:04 -0600)
committerBrian <brian.paul@tungstengraphics.com>
Fri, 10 Aug 2007 01:04:28 +0000 (19:04 -0600)
src/mesa/state_tracker/st_cb_clear.c

index 4da3a2500d6fe77bd42f2390c94935f22067b363..e3392101a8be6b22bfa96b24bfaef776f4e1a8a0 100644 (file)
@@ -129,11 +129,13 @@ make_color_shader(struct st_context *st)
       return NULL;
    }
    _mesa_init_instructions(p->Instructions, 2);
+   /* MOV result.color, fragment.color; */
    p->Instructions[0].Opcode = OPCODE_MOV;
    p->Instructions[0].DstReg.File = PROGRAM_OUTPUT;
-   p->Instructions[0].DstReg.Index = 0;
+   p->Instructions[0].DstReg.Index = FRAG_RESULT_COLR;
    p->Instructions[0].SrcReg[0].File = PROGRAM_INPUT;
    p->Instructions[0].SrcReg[0].Index = FRAG_ATTRIB_COL0;
+   /* END; */
    p->Instructions[1].Opcode = OPCODE_END;
 
    p->InputsRead = FRAG_BIT_COL0;