Lines Matching defs:dst_mask

2197         DWORD dst_mask = ins->dst[0].write_mask;
2202 if (dst_mask & RT_BIT(i))
2209 dst->write_mask = dst_mask;
2323 char dst_mask[6];
2325 shader_glsl_get_write_mask(&ins->dst[0], dst_mask);
2329 shader_addline(ins->ctx->buffer, "cross(%s, %s)%s);\n", src0_param.param_str, src1_param.param_str, dst_mask);
2432 char dst_mask[6];
2434 write_mask = shader_glsl_get_write_mask(ins->dst, dst_mask);
2469 char dst_mask[6];
2477 shader_glsl_get_write_mask(&ins->dst[0], dst_mask);
2478 shader_addline(ins->ctx->buffer, "tmp0%s);\n", dst_mask);
2549 DWORD dst_mask = ins->dst[0].write_mask;
2554 if (dst_mask & RT_BIT(i))
2557 dst.write_mask = dst_mask & write_mask;
2645 DWORD dst_mask = ins->dst[0].write_mask;
2659 dst.write_mask = dst_mask & write_mask;
2709 DWORD dst_mask;
2731 dst_mask = ins->dst[0].write_mask;
2744 dst.write_mask = dst_mask & write_mask;
2863 char dst_mask[6];
2866 shader_glsl_get_write_mask(&ins->dst[0], dst_mask);
2895 src0_param.param_str, src1_param.param_str, src0_param.param_str, src3_param.param_str, dst_mask);
2910 char dst_mask[6];
2913 shader_glsl_get_write_mask(&ins->dst[0], dst_mask);
2921 src0y_param.param_str, src1y_param.param_str, src0z_param.param_str, src1w_param.param_str, dst_mask);
3338 char dst_mask[6];
3340 shader_glsl_get_write_mask(&ins->dst[0], dst_mask);
3342 ins->dst[0].reg.idx, dst_mask);
3429 DWORD dst_mask;
3432 dst_mask = shader_glsl_append_dst(ins->ctx->buffer, ins);
3433 mask_size = shader_glsl_get_write_mask_size(dst_mask);
3559 char dst_mask[6];
3565 shader_glsl_get_write_mask(&ins->dst[0], dst_mask);
3566 shader_addline(ins->ctx->buffer, "vec4(tmp0.xy, dot(T%u.xyz, %s), 1.0)%s);\n", reg, src0_param.param_str, dst_mask);