| Index: tools/PictureRenderer.h
|
| diff --git a/tools/PictureRenderer.h b/tools/PictureRenderer.h
|
| index a22e0b7cd2edc450d62d1f27c07650d7b1e7618f..e524aa12962fb4b1a954775336236556acba1c78 100644
|
| --- a/tools/PictureRenderer.h
|
| +++ b/tools/PictureRenderer.h
|
| @@ -234,6 +234,9 @@ public:
|
| if (!fViewport.isEmpty()) {
|
| config.appendf("_viewport_%ix%i", fViewport.width(), fViewport.height());
|
| }
|
| + if (fScaleFactor != SK_Scalar1) {
|
| + config.appendf("_scalar_%f", SkScalarToFloat(fScaleFactor));
|
| + }
|
| if (kRTree_BBoxHierarchyType == fBBoxHierarchyType) {
|
| config.append("_rtree");
|
| } else if (kTileGrid_BBoxHierarchyType == fBBoxHierarchyType) {
|
|
|