Home | History | Annotate | Download | only in source

Lines Matching refs:tile

1694 							  const dng_rect &tile,
1698 int32 colIndex = (tile.l - fImage.Bounds ().l) / fUnitCell.h;
1699 int32 rowIndex = (tile.t - fImage.Bounds ().t) / fUnitCell.v;
1701 DNG_ASSERT (tile.l == fImage.Bounds ().l + colIndex * fUnitCell.h &&
1702 tile.t == fImage.Bounds ().t + rowIndex * fUnitCell.v,
1703 "Bad tile origin");
1707 dng_pixel_buffer buffer (tile, 0, fImage.Planes (),
4369 const dng_rect &tile,
4418 const dng_rect &tile,
4422 dng_const_tile_buffer srcBuffer (fSrcImage, tile);
4423 dng_dirty_tile_buffer dstBuffer (fDstImage, tile);
4435 for (int32 row = tile.t; row < tile.b; row++)
4438 const uint16 *sPtr = srcBuffer.ConstPixel_uint16 (row, tile.l, plane);
4440 uint8 *dPtr = dstBuffer.DirtyPixel_uint8 (row, tile.l, plane);
4444 for (int32 col = tile.l; col < tile.r; col++)