OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #ifndef CopyTilesRenderer_DEFINED | 8 #ifndef CopyTilesRenderer_DEFINED |
9 #define CopyTilesRenderer_DEFINED | 9 #define CopyTilesRenderer_DEFINED |
10 | 10 |
(...skipping 20 matching lines...) Expand all Loading... |
31 const SkString* writePath, | 31 const SkString* writePath, |
32 const SkString* mismatchPath, | 32 const SkString* mismatchPath, |
33 const SkString* inputFilename, | 33 const SkString* inputFilename, |
34 bool useChecksumBasedFilenames, | 34 bool useChecksumBasedFilenames, |
35 bool useMultiPictureDraw) SK_OVERRIDE; | 35 bool useMultiPictureDraw) SK_OVERRIDE; |
36 | 36 |
37 /** | 37 /** |
38 * Similar to TiledPictureRenderer, this will draw a PNG for each tile.
However, the | 38 * Similar to TiledPictureRenderer, this will draw a PNG for each tile.
However, the |
39 * numbering (and actual tiles) will be different. | 39 * numbering (and actual tiles) will be different. |
40 */ | 40 */ |
41 virtual bool render(SkBitmap** out) SK_OVERRIDE; | 41 bool render(SkBitmap** out) SK_OVERRIDE; |
42 | 42 |
43 virtual bool supportsTimingIndividualTiles() SK_OVERRIDE { return false;
} | 43 bool supportsTimingIndividualTiles() SK_OVERRIDE { return false; } |
44 | 44 |
45 private: | 45 private: |
46 int fXTilesPerLargeTile; | 46 int fXTilesPerLargeTile; |
47 int fYTilesPerLargeTile; | 47 int fYTilesPerLargeTile; |
48 | 48 |
49 int fLargeTileWidth; | 49 int fLargeTileWidth; |
50 int fLargeTileHeight; | 50 int fLargeTileHeight; |
51 | 51 |
52 virtual SkString getConfigNameInternal() SK_OVERRIDE; | 52 SkString getConfigNameInternal() SK_OVERRIDE; |
53 | 53 |
54 typedef TiledPictureRenderer INHERITED; | 54 typedef TiledPictureRenderer INHERITED; |
55 }; | 55 }; |
56 } // sk_tools | 56 } // sk_tools |
57 #endif // CopyTilesRenderer_DEFINED | 57 #endif // CopyTilesRenderer_DEFINED |
OLD | NEW |