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

Unified Diff: tools/PictureRenderer.h

Issue 318433003: Added grid data to logging output (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Changed from using public members to getters Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/PictureRenderer.h
diff --git a/tools/PictureRenderer.h b/tools/PictureRenderer.h
index 109073bca764dee97dc1895292e36ccbfb8fa41f..57d73cf33419b897a6e029ee1376bac878756521 100644
--- a/tools/PictureRenderer.h
+++ b/tools/PictureRenderer.h
@@ -260,6 +260,10 @@ public:
config.append("_quadtree");
} else if (kTileGrid_BBoxHierarchyType == fBBoxHierarchyType) {
config.append("_grid");
+ config.append("_");
+ config.appendS32(fGridInfo.fTileInterval.width());
+ config.append("x");
+ config.appendS32(fGridInfo.fTileInterval.height());
}
#if SK_SUPPORT_GPU
switch (fDeviceType) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698