Lines Matching refs:BLEND
335 #define BLEND(a,b,x) DIV255(BLEND1(a,b,x)) macro
342 dest->Y = BLEND (a->Y, b->Y, x); in videotestsrc_blend_color()
343 dest->U = BLEND (a->U, b->U, x); in videotestsrc_blend_color()
344 dest->V = BLEND (a->V, b->V, x); in videotestsrc_blend_color()
345 dest->R = BLEND (a->R, b->R, x); in videotestsrc_blend_color()
346 dest->G = BLEND (a->G, b->G, x); in videotestsrc_blend_color()
347 dest->B = BLEND (a->B, b->B, x); in videotestsrc_blend_color()
348 dest->gray = BLEND (a->gray, b->gray, x); in videotestsrc_blend_color()
361 dest[i * 4 + 0] = BLEND (a->A, b->A, src[i]); in videotestsrc_blend_line()
362 dest[i * 4 + 1] = BLEND (a->R, b->R, src[i]); in videotestsrc_blend_line()
363 dest[i * 4 + 2] = BLEND (a->G, b->G, src[i]); in videotestsrc_blend_line()
364 dest[i * 4 + 3] = BLEND (a->B, b->B, src[i]); in videotestsrc_blend_line()
368 dest[i * 4 + 0] = BLEND (a->A, b->A, src[i]); in videotestsrc_blend_line()
369 dest[i * 4 + 1] = BLEND (a->Y, b->Y, src[i]); in videotestsrc_blend_line()
370 dest[i * 4 + 2] = BLEND (a->U, b->U, src[i]); in videotestsrc_blend_line()
371 dest[i * 4 + 3] = BLEND (a->V, b->V, src[i]); in videotestsrc_blend_line()
374 #undef BLEND in videotestsrc_blend_line()