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

Side by Side Diff: samplecode/Sample2PtRadial.cpp

Issue 1772463002: use Make instead of Create to return a shared shader (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: partial update of skia call-sites Created 4 years, 9 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
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2011 Google Inc. 3 * Copyright 2011 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 #include "SampleCode.h" 8 #include "SampleCode.h"
9 #include "SkView.h" 9 #include "SkView.h"
10 #include "SkCanvas.h" 10 #include "SkCanvas.h"
(...skipping 15 matching lines...) Expand all
26 } 26 }
27 27
28 virtual void onDrawContent(SkCanvas* canvas) { 28 virtual void onDrawContent(SkCanvas* canvas) {
29 canvas->translate(SkIntToScalar(10), SkIntToScalar(20)); 29 canvas->translate(SkIntToScalar(10), SkIntToScalar(20));
30 30
31 SkColor colors[] = { SK_ColorRED, SK_ColorBLUE }; 31 SkColor colors[] = { SK_ColorRED, SK_ColorBLUE };
32 SkPoint c0 = { 0, 0 }; 32 SkPoint c0 = { 0, 0 };
33 SkScalar r0 = 100; 33 SkScalar r0 = 100;
34 SkPoint c1 = { 100, 100 }; 34 SkPoint c1 = { 100, 100 };
35 SkScalar r1 = 100; 35 SkScalar r1 = 100;
36 SkShader* s = SkGradientShader::CreateTwoPointConical(c0, r0, c1, r1, co lors, 36 SkPaint paint;
37 paint.setShader(SkGradientShader::MakeTwoPointConical(c0, r0, c1, r1, co lors,
37 nullptr, 2, 38 nullptr, 2,
38 SkShader::kClamp_Ti leMode); 39 SkShader::kClamp_Ti leMode));
39
40 SkPaint paint;
41 paint.setShader(s)->unref();
42 canvas->drawPaint(paint); 40 canvas->drawPaint(paint);
43 } 41 }
44 42
45 private: 43 private:
46 typedef SampleView INHERITED; 44 typedef SampleView INHERITED;
47 }; 45 };
48 46
49 ////////////////////////////////////////////////////////////////////////////// 47 //////////////////////////////////////////////////////////////////////////////
50 48
51 static SkView* MyFactory() { return new TwoPtConicalView; } 49 static SkView* MyFactory() { return new TwoPtConicalView; }
52 static SkViewRegister reg(MyFactory); 50 static SkViewRegister reg(MyFactory);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698