From ef470f185f0dcd94943d0c470ddf8cc109f30325 Mon Sep 17 00:00:00 2001 From: scroggo Date: Tue, 3 Jun 2014 06:50:26 -0700 Subject: [PATCH] Remove brackets from gm names. BUG=skia:2634 R=epoger@google.com, borenet@google.com Author: scroggo@google.com Review URL: https://codereview.chromium.org/307373003 --- gm/blurroundrect.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gm/blurroundrect.cpp b/gm/blurroundrect.cpp index 52938c04dc..3e6f1bdd98 100644 --- a/gm/blurroundrect.cpp +++ b/gm/blurroundrect.cpp @@ -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)); -- 2.34.1