Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(219)

Side by Side Diff: tools/CopyTilesRenderer.h

Issue 806653007: Fix up all the easy virtual ... SK_OVERRIDE cases. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tests/skia_test.cpp ('k') | tools/PictureRenderer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « tests/skia_test.cpp ('k') | tools/PictureRenderer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698