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

Side by Side Diff: gm/blurroundrect.cpp

Issue 61073002: blurroundrect gm: disable one set of tests in attempt to fix bug (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2013 Google Inc. 2 * Copyright 2013 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "gm.h" 8 #include "gm.h"
9 #include "SkBlurMask.h" 9 #include "SkBlurMask.h"
10 #include "SkBlurMaskFilter.h" 10 #include "SkBlurMaskFilter.h"
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 } 132 }
133 } 133 }
134 } 134 }
135 private: 135 private:
136 const SkString fName; 136 const SkString fName;
137 137
138 typedef skiagm::GM INHERITED; 138 typedef skiagm::GM INHERITED;
139 }; 139 };
140 140
141 // Create one with dimensions/rounded corners based on the skp 141 // Create one with dimensions/rounded corners based on the skp
142 DEF_GM(return new BlurRoundRectGM(600, 5514, 6);) 142 //
143 // TODO(scroggo): Disabled in an attempt to rememdy
144 // https://code.google.com/p/skia/issues/detail?id=1801 ('Win7 Test bots all fai ling GenerateGMs:
145 // ran wrong number of tests')
146 //DEF_GM(return new BlurRoundRectGM(600, 5514, 6);)
147
143 // Rounded rect with two opposite corners with large radii, the other two 148 // Rounded rect with two opposite corners with large radii, the other two
144 // small. 149 // small.
145 DEF_GM(return new BlurRoundRectGM(100, 100);) 150 DEF_GM(return new BlurRoundRectGM(100, 100);)
146 151
147 DEF_GM(return new SimpleBlurRoundRectGM();) 152 DEF_GM(return new SimpleBlurRoundRectGM();)
148
OLDNEW
« 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