| OLD | NEW |
| (Empty) |
| 1 #include "DMTileGridTask.h" | |
| 2 #include "DMWriteTask.h" | |
| 3 #include "DMUtil.h" | |
| 4 | |
| 5 #include "SkBBHFactory.h" | |
| 6 #include "SkCommandLineFlags.h" | |
| 7 #include "SkPicture.h" | |
| 8 | |
| 9 // TODO(mtklein): Tile grid tests are currently failing. (Skia issue 1198). Wh
en fixed, -> true. | |
| 10 DEFINE_bool(tileGrid, false, "If true, run picture replay tests with a tile grid
."); | |
| 11 | |
| 12 namespace DM { | |
| 13 | |
| 14 TileGridTask::TileGridTask(const Task& parent, skiagm::GM* gm, SkBitmap referenc
e, SkISize tileSize) | |
| 15 : CpuTask(parent) | |
| 16 , fName(UnderJoin(parent.name().c_str(), "tilegrid")) | |
| 17 , fGM(gm) | |
| 18 , fReference(reference) | |
| 19 , fTileSize(tileSize) | |
| 20 {} | |
| 21 | |
| 22 static int tiles_needed(int fullDimension, int tileDimension) { | |
| 23 return (fullDimension + tileDimension - 1) / tileDimension; | |
| 24 } | |
| 25 | |
| 26 void TileGridTask::draw() { | |
| 27 const SkTileGridFactory::TileGridInfo info = { | |
| 28 fTileSize, | |
| 29 SkISize::Make(0,0), // Overlap between adjacent tiles. | |
| 30 SkIPoint::Make(0,0), // Offset. | |
| 31 }; | |
| 32 SkTileGridFactory factory(info); | |
| 33 SkAutoTUnref<SkPicture> recorded(RecordPicture(fGM.get(), | |
| 34 SkPicture::kUsePathBoundsForC
lip_RecordingFlag, | |
| 35 &factory)); | |
| 36 | |
| 37 SkBitmap full; | |
| 38 SetupBitmap(fReference.colorType(), fGM.get(), &full); | |
| 39 SkCanvas fullCanvas(full); | |
| 40 | |
| 41 SkBitmap tile; | |
| 42 tile.allocPixels(SkImageInfo::Make(fTileSize.width(), fTileSize.height(), | |
| 43 fReference.colorType(), kPremul_SkAlphaTy
pe)); | |
| 44 SkCanvas tileCanvas(tile); | |
| 45 | |
| 46 SkPaint paint; | |
| 47 paint.setXfermodeMode(SkXfermode::kSrc_Mode); | |
| 48 | |
| 49 for (int y = 0; y < tiles_needed(full.height(), tile.height()); y++) { | |
| 50 for (int x = 0; x < tiles_needed(full.width(), tile.width()); x++) { | |
| 51 SkAutoCanvasRestore ar(&tileCanvas, true/*also save now*/); | |
| 52 | |
| 53 const SkScalar xOffset = SkIntToScalar(x * tile.width()), | |
| 54 yOffset = SkIntToScalar(y * tile.height()); | |
| 55 SkMatrix matrix = tileCanvas.getTotalMatrix(); | |
| 56 matrix.postTranslate(-xOffset, -yOffset); | |
| 57 tileCanvas.setMatrix(matrix); | |
| 58 | |
| 59 recorded->draw(&tileCanvas); | |
| 60 tileCanvas.flush(); | |
| 61 fullCanvas.drawBitmap(tile, xOffset, yOffset, &paint); | |
| 62 } | |
| 63 } | |
| 64 | |
| 65 if (!BitmapsEqual(full, fReference)) { | |
| 66 this->fail(); | |
| 67 this->spawnChild(SkNEW_ARGS(WriteTask, (*this, full))); | |
| 68 } | |
| 69 } | |
| 70 | |
| 71 bool TileGridTask::shouldSkip() const { | |
| 72 if (fGM->getFlags() & skiagm::GM::kSkipPicture_Flag) { | |
| 73 return true; | |
| 74 } | |
| 75 if (fGM->getFlags() & skiagm::GM::kSkipTiled_Flag) { | |
| 76 return true; | |
| 77 } | |
| 78 return !FLAGS_tileGrid; | |
| 79 } | |
| 80 | |
| 81 } // namespace DM | |
| OLD | NEW |