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

Side by Side Diff: gm/imagefiltersscaled.cpp

Issue 1852743002: Update SkBlurImageFilter to sk_sp (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Update to ToT & address code review comments Created 4 years, 8 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 unified diff | Download patch
« no previous file with comments | « gm/imagefiltersgraph.cpp ('k') | gm/imagefiltersstroked.cpp » ('j') | 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 2014 Google Inc. 2 * Copyright 2014 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 "sk_tool_utils.h" 8 #include "sk_tool_utils.h"
9 #include "SkBlurImageFilter.h" 9 #include "SkBlurImageFilter.h"
10 #include "SkColor.h" 10 #include "SkColor.h"
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 SkPoint3 spotTarget = SkPoint3::Make(SkIntToScalar(40), SkIntToScalar(40 ), 0); 66 SkPoint3 spotTarget = SkPoint3::Make(SkIntToScalar(40), SkIntToScalar(40 ), 0);
67 SkScalar spotExponent = SK_Scalar1; 67 SkScalar spotExponent = SK_Scalar1;
68 SkScalar cutoffAngle = SkIntToScalar(15); 68 SkScalar cutoffAngle = SkIntToScalar(15);
69 SkScalar kd = SkIntToScalar(2); 69 SkScalar kd = SkIntToScalar(2);
70 SkScalar surfaceScale = SkIntToScalar(1); 70 SkScalar surfaceScale = SkIntToScalar(1);
71 SkColor white(0xFFFFFFFF); 71 SkColor white(0xFFFFFFFF);
72 SkMatrix resizeMatrix; 72 SkMatrix resizeMatrix;
73 resizeMatrix.setScale(RESIZE_FACTOR, RESIZE_FACTOR); 73 resizeMatrix.setScale(RESIZE_FACTOR, RESIZE_FACTOR);
74 74
75 SkImageFilter* filters[] = { 75 SkImageFilter* filters[] = {
76 SkBlurImageFilter::Create(SkIntToScalar(4), SkIntToScalar(4)), 76 SkBlurImageFilter::Make(SkIntToScalar(4), SkIntToScalar(4), nullptr) .release(),
77 SkDropShadowImageFilter::Create(SkIntToScalar(5), SkIntToScalar(10), 77 SkDropShadowImageFilter::Create(SkIntToScalar(5), SkIntToScalar(10),
78 SkIntToScalar(3), SkIntToScalar(3), SK_ColorYELLOW, 78 SkIntToScalar(3), SkIntToScalar(3), SK_ColorYELLOW,
79 SkDropShadowImageFilter::kDrawShadowAndForeground_ShadowMode), 79 SkDropShadowImageFilter::kDrawShadowAndForeground_ShadowMode),
80 SkDisplacementMapEffect::Create(SkDisplacementMapEffect::kR_ChannelS electorType, 80 SkDisplacementMapEffect::Create(SkDisplacementMapEffect::kR_ChannelS electorType,
81 SkDisplacementMapEffect::kR_ChannelS electorType, 81 SkDisplacementMapEffect::kR_ChannelS electorType,
82 SkIntToScalar(12), 82 SkIntToScalar(12),
83 gradient.get(), 83 gradient.get(),
84 checkerboard.get()), 84 checkerboard.get()),
85 SkDilateImageFilter::Create(1, 1, checkerboard.get()), 85 SkDilateImageFilter::Create(1, 1, checkerboard.get()),
86 SkErodeImageFilter::Create(1, 1, checkerboard.get()), 86 SkErodeImageFilter::Create(1, 1, checkerboard.get()),
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 155
156 sk_sp<SkImage> fCheckerboard, fGradientCircle; 156 sk_sp<SkImage> fCheckerboard, fGradientCircle;
157 157
158 typedef GM INHERITED; 158 typedef GM INHERITED;
159 }; 159 };
160 160
161 ////////////////////////////////////////////////////////////////////////////// 161 //////////////////////////////////////////////////////////////////////////////
162 162
163 DEF_GM(return new ImageFiltersScaledGM;) 163 DEF_GM(return new ImageFiltersScaledGM;)
164 } 164 }
OLDNEW
« no previous file with comments | « gm/imagefiltersgraph.cpp ('k') | gm/imagefiltersstroked.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698