blob: 69ec695931ef7ef877950756a3cdb49c2b02794a [file] [log] [blame]
reed@google.com5dd85a42012-11-15 13:46:47 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "gm/gm.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -04009#include "include/core/SkBlendMode.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050010#include "include/core/SkCanvas.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040011#include "include/core/SkColor.h"
12#include "include/core/SkFont.h"
13#include "include/core/SkImageInfo.h"
14#include "include/core/SkPaint.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050015#include "include/core/SkPath.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040016#include "include/core/SkPoint.h"
17#include "include/core/SkRect.h"
18#include "include/core/SkRefCnt.h"
19#include "include/core/SkScalar.h"
20#include "include/core/SkShader.h"
21#include "include/core/SkSize.h"
22#include "include/core/SkString.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050023#include "include/core/SkSurface.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040024#include "include/core/SkTileMode.h"
25#include "include/core/SkTypeface.h"
26#include "include/core/SkTypes.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050027#include "include/effects/SkGradientShader.h"
28#include "tools/ToolUtils.h"
reed@google.com5dd85a42012-11-15 13:46:47 +000029
reed@google.coma4f81372012-11-15 15:56:38 +000030#define W SkIntToScalar(80)
reed@google.com5dd85a42012-11-15 13:46:47 +000031#define H SkIntToScalar(60)
32
reed@google.coma4f81372012-11-15 15:56:38 +000033typedef void (*PaintProc)(SkPaint*);
34
mike@reedtribe.org92aa7562012-11-16 02:23:10 +000035static void identity_paintproc(SkPaint* paint) {
halcanary96fcdcc2015-08-27 07:41:13 -070036 paint->setShader(nullptr);
mike@reedtribe.org92aa7562012-11-16 02:23:10 +000037}
38
reed@google.coma4f81372012-11-15 15:56:38 +000039static void gradient_paintproc(SkPaint* paint) {
40 const SkColor colors[] = { SK_ColorGREEN, SK_ColorBLUE };
41 const SkPoint pts[] = { { 0, 0 }, { W, H } };
reed1a9b9642016-03-13 14:13:58 -070042 paint->setShader(SkGradientShader::MakeLinear(pts, colors, nullptr, SK_ARRAY_COUNT(colors),
Mike Reedfae8fce2019-04-03 10:27:45 -040043 SkTileMode::kClamp));
reed@google.coma4f81372012-11-15 15:56:38 +000044}
45
Hal Canarydf2d27e2019-01-08 09:38:02 -050046typedef void (*Proc)(SkCanvas*, const SkPaint&, const SkFont&);
reed@google.com5dd85a42012-11-15 13:46:47 +000047
Hal Canarydf2d27e2019-01-08 09:38:02 -050048static void draw_hair(SkCanvas* canvas, const SkPaint& paint, const SkFont&) {
reed@google.com5dd85a42012-11-15 13:46:47 +000049 SkPaint p(paint);
50 p.setStrokeWidth(0);
51 canvas->drawLine(0, 0, W, H, p);
52}
53
Hal Canarydf2d27e2019-01-08 09:38:02 -050054static void draw_thick(SkCanvas* canvas, const SkPaint& paint, const SkFont&) {
reed@google.com5dd85a42012-11-15 13:46:47 +000055 SkPaint p(paint);
56 p.setStrokeWidth(H/5);
57 canvas->drawLine(0, 0, W, H, p);
58}
59
Hal Canarydf2d27e2019-01-08 09:38:02 -050060static void draw_rect(SkCanvas* canvas, const SkPaint& paint, const SkFont&) {
reed@google.com5dd85a42012-11-15 13:46:47 +000061 canvas->drawRect(SkRect::MakeWH(W, H), paint);
62}
63
Hal Canarydf2d27e2019-01-08 09:38:02 -050064static void draw_oval(SkCanvas* canvas, const SkPaint& paint, const SkFont&) {
reed@google.com5dd85a42012-11-15 13:46:47 +000065 canvas->drawOval(SkRect::MakeWH(W, H), paint);
66}
67
Hal Canarydf2d27e2019-01-08 09:38:02 -050068static void draw_text(SkCanvas* canvas, const SkPaint& paint, const SkFont& font) {
69 canvas->drawString("Hamburge", 0, H*2/3, font, paint);
reed@google.com5dd85a42012-11-15 13:46:47 +000070}
71
72class SrcModeGM : public skiagm::GM {
73 SkPath fPath;
reed@google.com5dd85a42012-11-15 13:46:47 +000074
Hal Canarybd865e22019-07-18 11:51:19 -040075 void onOnceBeforeDraw() override { this->setBGColor(SK_ColorBLACK); }
reed@google.com5dd85a42012-11-15 13:46:47 +000076
Hal Canarybd865e22019-07-18 11:51:19 -040077 SkString onShortName() override { return SkString("srcmode"); }
78
79 SkISize onISize() override { return {640, 760}; }
reed@google.com5dd85a42012-11-15 13:46:47 +000080
reed@google.com86eca472012-11-15 17:24:23 +000081 void drawContent(SkCanvas* canvas) {
reed@google.com5dd85a42012-11-15 13:46:47 +000082 canvas->translate(SkIntToScalar(20), SkIntToScalar(20));
83
84 SkPaint paint;
Mike Kleinea3f0142019-03-20 11:12:10 -050085 SkFont font(ToolUtils::create_portable_typeface(), H / 4);
caryclark97a26d02015-07-17 13:20:48 -070086 paint.setColor(0x80F60000);
reed@google.com5dd85a42012-11-15 13:46:47 +000087
88 const Proc procs[] = {
89 draw_hair, draw_thick, draw_rect, draw_oval, draw_text
90 };
91
reed374772b2016-10-05 17:33:02 -070092 const SkBlendMode modes[] = {
93 SkBlendMode::kSrcOver, SkBlendMode::kSrc, SkBlendMode::kClear
reed@google.com5dd85a42012-11-15 13:46:47 +000094 };
95
reed@google.coma4f81372012-11-15 15:56:38 +000096 const PaintProc paintProcs[] = {
97 identity_paintproc, gradient_paintproc
98 };
99
100 for (int aa = 0; aa <= 1; ++aa) {
101 paint.setAntiAlias(SkToBool(aa));
Hal Canarydf2d27e2019-01-08 09:38:02 -0500102 font.setEdging(SkToBool(aa) ? SkFont::Edging::kAntiAlias : SkFont::Edging::kAlias);
reed@google.com5dd85a42012-11-15 13:46:47 +0000103 canvas->save();
reed@google.coma4f81372012-11-15 15:56:38 +0000104 for (size_t i = 0; i < SK_ARRAY_COUNT(paintProcs); ++i) {
105 paintProcs[i](&paint);
106 for (size_t x = 0; x < SK_ARRAY_COUNT(modes); ++x) {
reed374772b2016-10-05 17:33:02 -0700107 paint.setBlendMode(modes[x]);
reed@google.coma4f81372012-11-15 15:56:38 +0000108 canvas->save();
109 for (size_t y = 0; y < SK_ARRAY_COUNT(procs); ++y) {
Hal Canarydf2d27e2019-01-08 09:38:02 -0500110 procs[y](canvas, paint, font);
reed@google.coma4f81372012-11-15 15:56:38 +0000111 canvas->translate(0, H * 5 / 4);
112 }
113 canvas->restore();
114 canvas->translate(W * 5 / 4, 0);
115 }
reed@google.com5dd85a42012-11-15 13:46:47 +0000116 }
117 canvas->restore();
reed@google.coma4f81372012-11-15 15:56:38 +0000118 canvas->translate(0, (H * 5 / 4) * SK_ARRAY_COUNT(procs));
reed@google.com5dd85a42012-11-15 13:46:47 +0000119 }
120 }
121
Brian Salomona8f43ce2019-09-10 11:43:25 -0400122 static sk_sp<SkSurface> compat_surface(SkCanvas* canvas, const SkISize& size) {
commit-bot@chromium.org32678d92014-01-15 02:38:22 +0000123 SkImageInfo info = SkImageInfo::MakeN32Premul(size);
Brian Salomona8f43ce2019-09-10 11:43:25 -0400124 sk_sp<SkSurface> surface = canvas->makeSurface(info);
halcanary96fcdcc2015-08-27 07:41:13 -0700125 if (nullptr == surface) {
Cary Clarka24712e2018-09-05 18:41:40 +0000126 // picture canvas will return null, so fall-back to raster
reede8f30622016-03-23 18:59:25 -0700127 surface = SkSurface::MakeRaster(info);
reed52d9ac62014-06-30 09:05:34 -0700128 }
129 return surface;
reed@google.com86eca472012-11-15 17:24:23 +0000130 }
131
Hal Canarybd865e22019-07-18 11:51:19 -0400132 void onDraw(SkCanvas* canvas) override {
Brian Salomona8f43ce2019-09-10 11:43:25 -0400133 auto surf(compat_surface(canvas, this->getISize()));
reed@google.com86eca472012-11-15 17:24:23 +0000134 surf->getCanvas()->drawColor(SK_ColorWHITE);
135 this->drawContent(surf->getCanvas());
halcanary96fcdcc2015-08-27 07:41:13 -0700136 surf->draw(canvas, 0, 0, nullptr);
reed@google.com86eca472012-11-15 17:24:23 +0000137 }
reed@google.com5dd85a42012-11-15 13:46:47 +0000138};
139
140///////////////////////////////////////////////////////////////////////////////
141
142DEF_GM(return new SrcModeGM;)