Home | History | Annotate | Download | only in dib

Lines Matching refs:src_x

635       uint32_t src_x = dest_x * m_Width / dest_width;
637 src_x = m_Width - src_x - 1;
639 src_x %= m_Width;
640 dest_scan[i] = (scanline[src_x / 8] & (1 << (7 - src_x % 8))) ? 255 : 0;
645 uint32_t src_x = dest_x * m_Width / dest_width;
647 src_x = m_Width - src_x - 1;
649 src_x %= m_Width;
654 FX_ARGB argb = m_pPalette.get()[scanline[src_x]];
660 FX_CMYK cmyk = m_pPalette.get()[scanline[src_x]];
667 dest_scan[dest_pos] = scanline[src_x];
673 uint32_t src_x =
676 src_x %= m_Width * src_Bpp;
679 dest_scan[dest_pos + b] = scanline[src_x + b];