OSDN Git Service

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 4da3a25..e339210 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;