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

Side by Side Diff: gm/imagefiltersscaled.cpp

Issue 1842753002: Style bikeshed - remove extraneous whitespace (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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/imagefiltersbase.cpp ('k') | gm/imagefromyuvtextures.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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 canvas->clear(SK_ColorBLACK); 53 canvas->clear(SK_ColorBLACK);
54 54
55 SkAutoTUnref<SkImageFilter> gradient(SkImageSource::Create(fGradientCirc le.get())); 55 SkAutoTUnref<SkImageFilter> gradient(SkImageSource::Create(fGradientCirc le.get()));
56 SkAutoTUnref<SkImageFilter> checkerboard(SkImageSource::Create(fCheckerb oard.get())); 56 SkAutoTUnref<SkImageFilter> checkerboard(SkImageSource::Create(fCheckerb oard.get()));
57 sk_sp<SkShader> noise(SkPerlinNoiseShader::MakeFractalNoise( 57 sk_sp<SkShader> noise(SkPerlinNoiseShader::MakeFractalNoise(
58 SkDoubleToScalar(0.1), SkDoubleToScalar(0.05), 1, 0)); 58 SkDoubleToScalar(0.1), SkDoubleToScalar(0.05), 1, 0));
59 SkPaint noisePaint; 59 SkPaint noisePaint;
60 noisePaint.setShader(noise); 60 noisePaint.setShader(noise);
61 61
62 SkPoint3 pointLocation = SkPoint3::Make(0, 0, SkIntToScalar(10)); 62 SkPoint3 pointLocation = SkPoint3::Make(0, 0, SkIntToScalar(10));
63 SkPoint3 spotLocation = SkPoint3::Make(SkIntToScalar(-10), 63 SkPoint3 spotLocation = SkPoint3::Make(SkIntToScalar(-10),
64 SkIntToScalar(-10), 64 SkIntToScalar(-10),
65 SkIntToScalar(20)); 65 SkIntToScalar(20));
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
(...skipping 80 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/imagefiltersbase.cpp ('k') | gm/imagefromyuvtextures.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698