Searched refs:inst_cmp (Results 1 - 2 of 2) sorted by relevance

/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_emulate_branches.c183 struct rc_instruction * inst_cmp = rc_insert_new_instruction(s->C, inst_endif); local
184 inst_cmp->U.I.Opcode = RC_OPCODE_CMP;
185 inst_cmp->U.I.DstReg.File = file;
186 inst_cmp->U.I.DstReg.Index = index;
187 inst_cmp->U.I.DstReg.WriteMask = RC_MASK_XYZW;
188 inst_cmp->U.I.SrcReg[0] = inst_if->U.I.SrcReg[0];
189 inst_cmp->U.I.SrcReg[0].Abs = 1;
190 inst_cmp->U.I.SrcReg[0].Negate = RC_MASK_XYZW;
191 inst_cmp->U.I.SrcReg[1].File = RC_FILE_TEMPORARY;
192 inst_cmp
[all...]
H A Dradeon_program_tex.c159 struct rc_instruction *inst_mul, *inst_add, *inst_cmp; local
244 inst_cmp = rc_insert_new_instruction(c, inst_add);
245 inst_cmp->U.I.Opcode = RC_OPCODE_CMP;
246 inst_cmp->U.I.SaturateMode = saturate_mode;
247 inst_cmp->U.I.DstReg = output_reg;
248 inst_cmp->U.I.SrcReg[0].File = RC_FILE_TEMPORARY;
249 inst_cmp->U.I.SrcReg[0].Index = tmp_sum;
250 inst_cmp->U.I.SrcReg[0].Swizzle =
253 inst_cmp->U.I.SrcReg[pass] = shadow_pass_value(compiler, inst->U.I.TexSrcUnit);
254 inst_cmp
[all...]

Completed in 340 milliseconds