OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:inst_cmp
(Results
1 - 2
of
2
) sorted by null
/external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_emulate_branches.c
183
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
->U.I.SrcReg[1].Index = ifproxy.Proxied ? ifproxy.Index : index
[
all
...]
radeon_program_tex.c
159
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
->U.I.SrcReg[fail] = shadow_fail_value(compiler, inst->U.I.TexSrcUnit)
[
all
...]
Completed in 532 milliseconds