Home | History | Annotate | Download | only in dib

Lines Matching defs:src_pixel

490                             FX_LPCBYTE src_pixel = src_scan + j * Bpp;

491 dest_b_c += pixel_weight * (*src_pixel++);
492 dest_g_m += pixel_weight * (*src_pixel++);
493 dest_r_y += pixel_weight * (*src_pixel);
513 FX_LPCBYTE src_pixel = src_scan + j * Bpp;
515 pixel_weight = pixel_weight * src_pixel[3] / 255;
519 dest_b_c += pixel_weight * (*src_pixel++);
520 dest_g_m += pixel_weight * (*src_pixel++);
521 dest_r_y += pixel_weight * (*src_pixel);
609 FX_LPCBYTE src_pixel = src_scan + (j - m_SrcClip.top) * m_InterPitch;
610 dest_b_c += pixel_weight * (*src_pixel++);
611 dest_g_m += pixel_weight * (*src_pixel++);
612 dest_r_y += pixel_weight * (*src_pixel);
637 FX_LPCBYTE src_pixel = src_scan + (j - m_SrcClip.top) * m_InterPitch;
642 dest_b_c += pixel_weight * (*src_pixel++);
643 dest_g_m += pixel_weight * (*src_pixel++);
644 dest_r_y += pixel_weight * (*src_pixel);
646 dest_a += pixel_weight * (*(src_pixel + 1));