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

Side by Side Diff: gm/pixelxorxfermode.cpp

Issue 1631873002: Add gpu backend for SkPixelXorXfermode (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: And fix case where the srcColor is null Created 4 years, 11 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 | « no previous file | include/effects/SkPixelXorXfermode.h » ('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 2016 Google Inc. 2 * Copyright 2016 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 "Resources.h" 9 #include "Resources.h"
10 10
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 42
43 void onDraw(SkCanvas* canvas) override { 43 void onDraw(SkCanvas* canvas) override {
44 canvas->drawBitmap(fBM, 0, 0); 44 canvas->drawBitmap(fBM, 0, 0);
45 45
46 SkRect r = SkRect::MakeIWH(256, 256); 46 SkRect r = SkRect::MakeIWH(256, 256);
47 47
48 // Negate the red channel of the dst (via the ancillary color) but leave 48 // Negate the red channel of the dst (via the ancillary color) but leave
49 // the green & blue channels alone 49 // the green & blue channels alone
50 SkPaint p1; 50 SkPaint p1;
51 p1.setColor(SK_ColorBLACK); // noop 51 p1.setColor(SK_ColorBLACK); // noop
52 p1.setXfermode(SkPixelXorXfermode::Create(SK_ColorRED))->unref(); 52 p1.setXfermode(SkPixelXorXfermode::Create(0x7FFF0000))->unref();
53 53
54 canvas->drawRect(r, p1); 54 canvas->drawRect(r, p1);
55 55
56 r.offsetTo(256.0f, 0.0f); 56 r.offsetTo(256.0f, 0.0f);
57 57
58 // Negate the dst color via the src color 58 // Negate the dst color via the src color
59 SkPaint p2; 59 SkPaint p2;
60 p2.setColor(SK_ColorWHITE); 60 p2.setColor(SK_ColorWHITE);
61 p2.setXfermode(SkPixelXorXfermode::Create(SK_ColorBLACK))->unref(); // n oop 61 p2.setXfermode(SkPixelXorXfermode::Create(SK_ColorBLACK))->unref(); // n oop
62 62
(...skipping 21 matching lines...) Expand all
84 84
85 private: 85 private:
86 SkBitmap fBM; 86 SkBitmap fBM;
87 87
88 typedef GM INHERITED; 88 typedef GM INHERITED;
89 }; 89 };
90 90
91 ////////////////////////////////////////////////////////////////////////////// 91 //////////////////////////////////////////////////////////////////////////////
92 92
93 DEF_GM(return new PixelXorXfermodeGM;) 93 DEF_GM(return new PixelXorXfermodeGM;)
OLDNEW
« no previous file with comments | « no previous file | include/effects/SkPixelXorXfermode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698