aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/blurroundrect.cpp
diff options
context:
space:
mode:
authorGravatar scroggo <scroggo@google.com>2014-06-03 06:50:26 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-06-03 06:50:26 -0700
commitef470f185f0dcd94943d0c470ddf8cc109f30325 (patch)
treebef9515d732440d2be6a6cc2e1ded135e3e5e5a4 /gm/blurroundrect.cpp
parent8af0523b38f25993c8b1ba3a3562b9f9ac87162d (diff)
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
Diffstat (limited to 'gm/blurroundrect.cpp')
-rw-r--r--gm/blurroundrect.cpp5
1 files 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));