Home | History | Annotate | Download | only in dib

Lines Matching full:dest_scan

88             FX_LPBYTE dest_scan = dest_buf;

90 dest_scan += (result_height - 1) * dest_pitch;
95 dest_scan[dest_col / 8] &= ~(1 << (7 - dest_col % 8));
97 dest_scan += dest_step;
108 FX_LPBYTE dest_scan = dest_buf + dest_col * nBytes;
110 dest_scan += (result_height - 1) * dest_pitch;
115 *(FX_DWORD*)dest_scan = *src_scan++;
116 dest_scan += dest_step;
122 *dest_scan = *src_scan++;
123 dest_scan += dest_step;
127 *dest_scan++ = *src_scan++;
128 *dest_scan++ = *src_scan++;
129 *dest_scan = *src_scan++;
130 dest_scan += dest_step;
142 FX_LPBYTE dest_scan = dest_buf + dest_col;
144 dest_scan += (result_height - 1) * dest_pitch;
148 *dest_scan = *src_scan++;
149 dest_scan += dest_step;
468 FX_LPBYTE dest_scan = (FX_LPBYTE)pTransformed->GetScanline(row);
489 *dest_scan = _bilinear_interpol(stretch_buf, row_offset_l, row_offset_r, src_col_l, src_col_r, res_x, res_y, 1, 0);
491 dest_scan ++;
498 FX_LPBYTE dest_scan = (FX_LPBYTE)pTransformed->GetScanline(row);
511 *dest_scan = _bicubic_interpol(stretch_buf, stretch_pitch, pos_pixel, u_w, v_w, res_x, res_y, 1, 0);
513 dest_scan ++;
519 FX_LPBYTE dest_scan = (FX_LPBYTE)pTransformed->GetScanline(row);
531 *dest_scan = *src_pixel;
533 dest_scan ++;