Remove brackets from gm names.
authorscroggo <scroggo@google.com>
Tue, 3 Jun 2014 13:50:26 +0000 (06:50 -0700)
committerCommit bot <commit-bot@chromium.org>
Tue, 3 Jun 2014 13:50:26 +0000 (06:50 -0700)
BUG=skia:2634
R=epoger@google.com, borenet@google.com

Author: scroggo@google.com

Review URL: https://codereview.chromium.org/307373003

gm/blurroundrect.cpp

index 52938c04dcd525a42fc07b6d9f25157ea9f33fe8..3e6f1bdd985596d239a91dd0ca749dd69783dcc1 100644 (file)
@@ -27,13 +27,12 @@ public:
     {
         SkRect r = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height));
         fRRect.setRectXY(r, SkIntToScalar(radius), SkIntToScalar(radius));
-        fName.appendf("-WH[%ix%i]-corner[%i]", width, height, radius);
+        fName.appendf("-WH-%ix%i-corner-%i", width, height, radius);
     }
 
     BlurRoundRectGM(int width, int height)
         : fName("blurroundrect") {
-        fName.appendf("-WH[%ix%i]-unevenCorners",
-                      width,  height);
+        fName.appendf("-WH-%ix%i-unevenCorners", width,  height);
         SkVector radii[4];
         radii[0].set(SkIntToScalar(30), SkIntToScalar(30));
         radii[1].set(SkIntToScalar(10), SkIntToScalar(10));