Home | History | Annotate | Download | only in fpdf_render

Lines Matching full:dest_scan

593                 FX_LPBYTE dest_scan = (FX_LPBYTE)bitmap_device1.GetBitmap()->GetScanline(row);

598 int orig = (*dest_scan - matte_b) * 255 / alpha + matte_b;
604 *dest_scan++ = orig;
605 orig = (*dest_scan - matte_g) * 255 / alpha + matte_g;
611 *dest_scan++ = orig;
612 orig = (*dest_scan - matte_r) * 255 / alpha + matte_r;
618 *dest_scan++ = orig;
619 dest_scan ++;
621 dest_scan += 4;
680 FX_LPBYTE dest_scan = (FX_LPBYTE)bitmap_device1.GetBitmap()->GetScanline(row);
685 int orig = (*dest_scan - matte_b) * 255 / alpha + matte_b;
691 *dest_scan++ = orig;
692 orig = (*dest_scan - matte_g) * 255 / alpha + matte_g;
698 *dest_scan++ = orig;
699 orig = (*dest_scan - matte_r) * 255 / alpha + matte_r;
705 *dest_scan++ = orig;
706 dest_scan ++;
708 dest_scan += 4;