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

Side by Side Diff: gm/alphagradients.cpp

Issue 288313009: Remove unused (by clients) SkUnitMapper (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
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 "SkCanvas.h" 9 #include "SkCanvas.h"
10 #include "SkGradientShader.h" 10 #include "SkGradientShader.h"
(...skipping 11 matching lines...) Expand all
22 return SkISize::Make(640, 480); 22 return SkISize::Make(640, 480);
23 } 23 }
24 24
25 static void draw_grad(SkCanvas* canvas, const SkRect& r, 25 static void draw_grad(SkCanvas* canvas, const SkRect& r,
26 SkColor c0, SkColor c1, bool doPreMul) { 26 SkColor c0, SkColor c1, bool doPreMul) {
27 SkColor colors[] = { c0, c1 }; 27 SkColor colors[] = { c0, c1 };
28 SkPoint pts[] = { { r.fLeft, r.fTop }, { r.fRight, r.fBottom } }; 28 SkPoint pts[] = { { r.fLeft, r.fTop }, { r.fRight, r.fBottom } };
29 SkPaint paint; 29 SkPaint paint;
30 uint32_t flags = doPreMul ? SkGradientShader::kInterpolateColorsInPremul _Flag : 0; 30 uint32_t flags = doPreMul ? SkGradientShader::kInterpolateColorsInPremul _Flag : 0;
31 SkShader* s = SkGradientShader::CreateLinear(pts, colors, NULL, 2, 31 SkShader* s = SkGradientShader::CreateLinear(pts, colors, NULL, 2,
32 SkShader::kClamp_TileMode, 32 SkShader::kClamp_TileMode, flags, NULL);
33 NULL, flags);
34 paint.setShader(s)->unref(); 33 paint.setShader(s)->unref();
35 canvas->drawRect(r, paint); 34 canvas->drawRect(r, paint);
36 35
37 paint.setShader(NULL); 36 paint.setShader(NULL);
38 paint.setStyle(SkPaint::kStroke_Style); 37 paint.setStyle(SkPaint::kStroke_Style);
39 canvas->drawRect(r, paint); 38 canvas->drawRect(r, paint);
40 } 39 }
41 40
42 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE { 41 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
43 static const struct { 42 static const struct {
(...skipping 29 matching lines...) Expand all
73 } 72 }
74 } 73 }
75 74
76 virtual uint32_t onGetFlags() const { return kSkipPipe_Flag | kSkipTiled_Fla g; } 75 virtual uint32_t onGetFlags() const { return kSkipPipe_Flag | kSkipTiled_Fla g; }
77 76
78 private: 77 private:
79 typedef skiagm::GM INHERITED; 78 typedef skiagm::GM INHERITED;
80 }; 79 };
81 80
82 DEF_GM( return SkNEW(AlphaGradientsGM); ) 81 DEF_GM( return SkNEW(AlphaGradientsGM); )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698