blob: 9a8b3745bd6ee2f3076c363dbbc5512416097ed4 [file] [log] [blame]
scroggo@google.com4a26d9d2012-11-07 18:01:46 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef CopyTilesRenderer_DEFINED
9#define CopyTilesRenderer_DEFINED
10
11#include "PictureRenderer.h"
12#include "SkTypes.h"
13
14class SkPicture;
15class SkString;
16
17namespace sk_tools {
18 /**
19 * PictureRenderer that draws the picture and then extracts it into tiles. For large pictures,
20 * it will divide the picture into large tiles and draw the picture once for each large tile.
21 */
22 class CopyTilesRenderer : public TiledPictureRenderer {
23
24 public:
25 CopyTilesRenderer(int x, int y);
26 virtual void init(SkPicture* pict) SK_OVERRIDE;
27
28 /**
29 * Similar to TiledPictureRenderer, this will draw a PNG for each tile. However, the
30 * numbering (and actual tiles) will be different.
31 */
edisonn@google.com84f548c2012-12-18 22:24:03 +000032 virtual bool render(const SkString* path, SkBitmap** out) SK_OVERRIDE;
scroggo@google.com4a26d9d2012-11-07 18:01:46 +000033
scroggo@google.com161e1ba2013-03-04 16:41:06 +000034 virtual bool supportsTimingIndividualTiles() SK_OVERRIDE { return false; }
35
scroggo@google.com4a26d9d2012-11-07 18:01:46 +000036 private:
37 int fXTilesPerLargeTile;
38 int fYTilesPerLargeTile;
39
40 int fLargeTileWidth;
41 int fLargeTileHeight;
42
43 virtual SkString getConfigNameInternal() SK_OVERRIDE;
44
45 typedef TiledPictureRenderer INHERITED;
46 };
47} // sk_tools
48#endif // CopyTilesRenderer_DEFINED