Lines Matching defs:b_src
154 float b_src = static_cast<float>(pixel_in[2]) / 255.0f;
161 b_src = srgb_to_linear(b_src);
178 b_out = (b_dst * (1.0f - a_src)) + (b_src * a_src);
186 b_out = (b_dst * (1.0f - a_src)) + (b_src * 1.0f);
230 float b_src = static_cast<float>(pixel_in_00[2] + pixel_in_01[2] + pixel_in_10[2] + pixel_in_11[2]) / (255.0f * 4.0f);
237 b_src = srgb_to_linear(b_src);
254 b_out = (b_dst * (1.0f - a_src)) + (b_src * a_src);
262 b_out = (b_dst * (1.0f - a_src)) + (b_src * 1.0f);