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

Unified Diff: gm/blurroundrect.cpp

Issue 307373003: Remove brackets from gm names. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Remove more brackets... 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: gm/blurroundrect.cpp
diff --git a/gm/blurroundrect.cpp b/gm/blurroundrect.cpp
index 52938c04dcd525a42fc07b6d9f25157ea9f33fe8..3e6f1bdd985596d239a91dd0ca749dd69783dcc1 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));
« 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