2012-11-07 18:01:46 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2012 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CopyTilesRenderer_DEFINED
|
|
|
|
#define CopyTilesRenderer_DEFINED
|
|
|
|
|
|
|
|
#include "PictureRenderer.h"
|
|
|
|
#include "SkTypes.h"
|
|
|
|
|
|
|
|
class SkPicture;
|
|
|
|
class SkString;
|
|
|
|
|
|
|
|
namespace sk_tools {
|
|
|
|
/**
|
|
|
|
* PictureRenderer that draws the picture and then extracts it into tiles. For large pictures,
|
|
|
|
* it will divide the picture into large tiles and draw the picture once for each large tile.
|
|
|
|
*/
|
|
|
|
class CopyTilesRenderer : public TiledPictureRenderer {
|
|
|
|
|
|
|
|
public:
|
|
|
|
CopyTilesRenderer(int x, int y);
|
2014-05-15 15:10:48 +00:00
|
|
|
virtual void init(SkPicture* pict, const SkString* writePath, const SkString* mismatchPath,
|
|
|
|
const SkString* inputFilename,
|
2014-03-19 17:26:07 +00:00
|
|
|
bool useChecksumBasedFilenames) SK_OVERRIDE;
|
2012-11-07 18:01:46 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Similar to TiledPictureRenderer, this will draw a PNG for each tile. However, the
|
|
|
|
* numbering (and actual tiles) will be different.
|
|
|
|
*/
|
2014-03-19 17:26:07 +00:00
|
|
|
virtual bool render(SkBitmap** out) SK_OVERRIDE;
|
2012-11-07 18:01:46 +00:00
|
|
|
|
2013-03-04 16:41:06 +00:00
|
|
|
virtual bool supportsTimingIndividualTiles() SK_OVERRIDE { return false; }
|
|
|
|
|
2012-11-07 18:01:46 +00:00
|
|
|
private:
|
|
|
|
int fXTilesPerLargeTile;
|
|
|
|
int fYTilesPerLargeTile;
|
|
|
|
|
|
|
|
int fLargeTileWidth;
|
|
|
|
int fLargeTileHeight;
|
|
|
|
|
|
|
|
virtual SkString getConfigNameInternal() SK_OVERRIDE;
|
|
|
|
|
|
|
|
typedef TiledPictureRenderer INHERITED;
|
|
|
|
};
|
|
|
|
} // sk_tools
|
|
|
|
#endif // CopyTilesRenderer_DEFINED
|