Home | History | Annotate | Download | only in program

Lines Matching refs:DstReg

91       newInst[i].DstReg.File = PROGRAM_OUTPUT;
92 newInst[i].DstReg.Index = VERT_RESULT_HPOS;
93 newInst[i].DstReg.WriteMask = (WRITEMASK_X << i);
163 newInst[0].DstReg.File = PROGRAM_TEMPORARY;
164 newInst[0].DstReg.Index = hposTemp;
165 newInst[0].DstReg.WriteMask = WRITEMASK_XYZW;
175 newInst[i].DstReg.File = PROGRAM_TEMPORARY;
176 newInst[i].DstReg.Index = hposTemp;
177 newInst[i].DstReg.WriteMask = WRITEMASK_XYZW;
190 newInst[3].DstReg.File = PROGRAM_OUTPUT;
191 newInst[3].DstReg.Index = VERT_RESULT_HPOS;
192 newInst[3].DstReg.WriteMask = WRITEMASK_XYZW;
303 if (inst->DstReg.File == PROGRAM_OUTPUT &&
304 inst->DstReg.Index == FRAG_RESULT_COLOR) {
306 inst->DstReg.File = PROGRAM_TEMPORARY;
307 inst->DstReg.Index = colorTemp;
322 inst->DstReg.File = PROGRAM_TEMPORARY;
323 inst->DstReg.Index = fogFactorTemp;
324 inst->DstReg.WriteMask = WRITEMASK_X;
343 inst->DstReg.File = PROGRAM_TEMPORARY;
344 inst->DstReg.Index = fogFactorTemp;
345 inst->DstReg.WriteMask = WRITEMASK_X;
357 inst->DstReg.File = PROGRAM_TEMPORARY;
358 inst->DstReg.Index = fogFactorTemp;
359 inst->DstReg.WriteMask = WRITEMASK_X;
370 inst->DstReg.File = PROGRAM_TEMPORARY;
371 inst->DstReg.Index = fogFactorTemp;
372 inst->DstReg.WriteMask = WRITEMASK_X;
382 inst->DstReg.File = PROGRAM_OUTPUT;
383 inst->DstReg.Index = FRAG_RESULT_COLOR;
384 inst->DstReg.WriteMask = WRITEMASK_XYZ;
397 inst->DstReg.File = PROGRAM_OUTPUT;
398 inst->DstReg.Index = FRAG_RESULT_COLOR;
399 inst->DstReg.WriteMask = WRITEMASK_W;
459 (inst->DstReg.File == PROGRAM_TEMPORARY) &&
460 (aluTemps & (1 << inst->DstReg.Index))))
473 if (inst->DstReg.File == PROGRAM_TEMPORARY)
474 aluTemps |= (1 << inst->DstReg.Index);
477 if ((inst->Opcode != OPCODE_KIL) && (inst->DstReg.File == PROGRAM_TEMPORARY))
478 tempsOutput |= (1 << inst->DstReg.Index);
554 if (inst->DstReg.File == type &&
555 outputMap[inst->DstReg.Index] >= 0) {
557 inst->DstReg.File = PROGRAM_TEMPORARY;
558 inst->DstReg.Index = outputMap[inst->DstReg.Index];
586 inst->DstReg.File = type;
587 inst->DstReg.Index = var;
618 inst[0].DstReg.File = PROGRAM_OUTPUT;
619 inst[0].DstReg.Index = FRAG_RESULT_COLOR;
662 inst[0].DstReg.File = PROGRAM_OUTPUT;
663 inst[0].DstReg.Index = VERT_RESULT_COL0;