Home | History | Annotate | Download | only in images

Lines Matching full:scanline

335             uint8_t* scanline = (uint8_t*) storage.get();
371 // now decode each scanline
377 if (DGifGetLine(gif, scanline, innerWidth) == GIF_ERROR) {
379 memset(scanline, fillIndex, innerWidth);
381 sampler.sampleInterlaced(scanline, iter.currY());
386 sampler.sampleInterlaced(scanline, iter.currY());
392 skip_src_rows(gif, scanline, innerWidth, sampler.srcY0());
394 if (DGifGetLine(gif, scanline, innerWidth) == GIF_ERROR) {
396 memset(scanline, fillIndex, innerWidth);
398 sampler.next(scanline);
402 // scanline now contains the raw data. Sample it.
403 sampler.next(scanline);
405 skip_src_rows(gif, scanline, innerWidth, sampler.srcDY() - 1);
411 skip_src_rows(gif, scanline, innerWidth, innerHeight - read);