Home | History | Annotate | Download | only in compiler

Lines Matching refs:Alpha

346 					      inst->RGB.Opcode : inst->Alpha.Opcode, branch_depth);
359 if (inst->Alpha.Src[src].Used) {
363 rc_print_register(f, inst->Alpha.Src[src].File, inst->Alpha.Src[src].Index, 0);
372 if(inst->Alpha.Src[RC_PAIR_PRESUB_SRC].Used) {
375 inst->Alpha.Src[RC_PAIR_PRESUB_SRC].Index));
421 if (inst->Alpha.Opcode != RC_OPCODE_NOP) {
422 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->Alpha.Opcode);
427 fprintf(f, " %s%s", opcode->Name, inst->Alpha.Saturate ? "_SAT" : "");
428 if (inst->Alpha.WriteMask)
429 fprintf(f, " temp[%i].w", inst->Alpha.DestIndex);
430 if (inst->Alpha.OutputWriteMask)
431 fprintf(f, " color[%i].w", inst->Alpha.Target);
432 if (inst->Alpha.DepthWriteMask)
437 print_omod_op(f, inst->Alpha.Omod);
440 const char* abs = inst->Alpha.Arg[arg].Abs ? "|" : "";
441 const char* neg = inst->Alpha.Arg[arg].Negate ? "-" : "";
443 if(inst->Alpha.Arg[arg].Source == RC_PAIR_PRESUB_SRC)
446 fprintf(f,"%d", inst->Alpha.Arg[arg].Source);
448 rc_swizzle_char(GET_SWZ(inst->Alpha.Arg[arg].Swizzle, 0)), abs);