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

Side by Side Diff: gm/alphagradients.cpp

Issue 287063009: Revert of 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
« no previous file with comments | « experimental/webtry/templates/template.cpp ('k') | gm/colortype.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 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, flags, NULL); 32 SkShader::kClamp_TileMode,
33 NULL, flags);
33 paint.setShader(s)->unref(); 34 paint.setShader(s)->unref();
34 canvas->drawRect(r, paint); 35 canvas->drawRect(r, paint);
35 36
36 paint.setShader(NULL); 37 paint.setShader(NULL);
37 paint.setStyle(SkPaint::kStroke_Style); 38 paint.setStyle(SkPaint::kStroke_Style);
38 canvas->drawRect(r, paint); 39 canvas->drawRect(r, paint);
39 } 40 }
40 41
41 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE { 42 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
42 static const struct { 43 static const struct {
(...skipping 29 matching lines...) Expand all
72 } 73 }
73 } 74 }
74 75
75 virtual uint32_t onGetFlags() const { return kSkipPipe_Flag | kSkipTiled_Fla g; } 76 virtual uint32_t onGetFlags() const { return kSkipPipe_Flag | kSkipTiled_Fla g; }
76 77
77 private: 78 private:
78 typedef skiagm::GM INHERITED; 79 typedef skiagm::GM INHERITED;
79 }; 80 };
80 81
81 DEF_GM( return SkNEW(AlphaGradientsGM); ) 82 DEF_GM( return SkNEW(AlphaGradientsGM); )
OLDNEW
« no previous file with comments | « experimental/webtry/templates/template.cpp ('k') | gm/colortype.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698