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

Side by Side Diff: gm/blurroundrect.cpp

Issue 48623006: Add ability to ninepatch blurred rounded rectangle (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: rebase 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 | include/core/SkDraw.h » ('j') | src/effects/SkBlurMaskFilter.cpp » ('J')
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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 1, 3, 2, 2)); 201 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 1, 3, 2, 2));
202 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 3, 3)); 202 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 3, 3));
203 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 6, 3, 3, 3)); 203 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 6, 3, 3, 3));
204 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 10, 3)); 204 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 10, 3));
205 205
206 // Even larger corner radius 206 // Even larger corner radius
207 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 1, 6, 2, 4)); 207 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 1, 6, 2, 4));
208 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 3, 6)); 208 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 3, 6));
209 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 6, 6)); 209 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 6, 6));
210 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 10, 6, 1, 3)); 210 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 10, 6, 1, 3));
211
OLDNEW
« no previous file with comments | « no previous file | include/core/SkDraw.h » ('j') | src/effects/SkBlurMaskFilter.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698