Lines Matching refs:rt
108 for (unsigned rt = 0; rt < blend_state->rt_count; rt++) {
109 struct pan_blend_rt_state *rt_state = &blend_state->rts[rt];
111 if (!panvk_per_arch(blend_needs_lowering)(pdev, blend_state, rt))
116 options.format[rt] = fmt;
117 options.rt[rt].colormask = rt_state->equation.color_mask;
128 options.rt[rt].rgb = replace;
129 options.rt[rt].alpha = replace;
131 options.rt[rt].rgb.func = rt_state->equation.rgb_func;
132 options.rt[rt].rgb.src_factor = rt_state->equation.rgb_src_factor;
133 options.rt[rt].rgb.invert_src_factor = rt_state->equation.rgb_invert_src_factor;
134 options.rt[rt].rgb.dst_factor = rt_state->equation.rgb_dst_factor;
135 options.rt[rt].rgb.invert_dst_factor = rt_state->equation.rgb_invert_dst_factor;
136 options.rt[rt].alpha.func = rt_state->equation.alpha_func;
137 options.rt[rt].alpha.src_factor = rt_state->equation.alpha_src_factor;
138 options.rt[rt].alpha.invert_src_factor = rt_state->equation.alpha_invert_src_factor;
139 options.rt[rt].alpha.dst_factor = rt_state->equation.alpha_dst_factor;
140 options.rt[rt].alpha.invert_dst_factor = rt_state->equation.alpha_invert_dst_factor;
158 inputs->bifrost.rt_conv[rt] =
159 GENX(pan_blend_get_internal_desc)(pdev, fmt, rt, 32, false) >> 32;