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

Unified Diff: gm/imagefilters.cpp

Issue 1088773004: add GM to test imagefilters + xfermodes (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: reference bug in code Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | gyp/gmslides.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/imagefilters.cpp
diff --git a/gm/imagefilters.cpp b/gm/imagefilters.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..c096c24b3482d47eca3388cbe86938f01fa55361
--- /dev/null
+++ b/gm/imagefilters.cpp
@@ -0,0 +1,67 @@
+/*
+ * Copyright 2015 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#include "gm.h"
+#include "SkImageFilter.h"
+#include "SkColorMatrixFilter.h"
+
+/**
+ * Test drawing a primitive w/ an imagefilter (in this case, just matrix w/ identity) to see
+ * that we apply the xfermode *after* the image has been created and filtered, and not during
+ * the creation step (i.e. before it is filtered).
+ *
+ * see skbug.com/3741
+ */
+class ImageFilterXfermodeTestGM : public skiagm::GM {
+protected:
+ SkString onShortName() override {
+ return SkString("imagefilters_xfermodes");
+ }
+
+ SkISize onISize() override { return SkISize::Make(480, 480); }
+
+ void doDraw(SkCanvas* canvas, SkXfermode::Mode mode, SkImageFilter* imf) {
+ SkPaint paint;
+ paint.setAntiAlias(true);
+
+ SkRect r0 = SkRect::MakeXYWH(10, 60, 200, 100);
+ SkRect r1 = SkRect::MakeXYWH(60, 10, 100, 200);
+
+ paint.setColor(SK_ColorRED);
+ canvas->drawOval(r0, paint);
+
+ paint.setColor(0x800000FF);
+ paint.setImageFilter(imf);
+ paint.setXfermodeMode(mode);
+ canvas->drawOval(r1, paint);
+ }
+
+ void onDraw(SkCanvas* canvas) override {
+ // just need an imagefilter to trigger the code-path (which creates a tmp layer)
+ SkAutoTUnref<SkImageFilter> imf(SkImageFilter::CreateMatrixFilter(SkMatrix::I(),
+ kNone_SkFilterQuality));
+
+ const SkXfermode::Mode modes[] = {
+ SkXfermode::kSrcATop_Mode, SkXfermode::kDstIn_Mode
+ };
+
+ for (size_t i = 0; i < SK_ARRAY_COUNT(modes); ++i) {
+ canvas->save();
+ this->doDraw(canvas, modes[i], NULL);
+ canvas->translate(250, 0);
+ this->doDraw(canvas, modes[i], imf);
+ canvas->restore();
+
+ canvas->translate(0, 250);
+ }
+ }
+
+private:
+ typedef GM INHERITED;
+};
+DEF_GM( return new ImageFilterXfermodeTestGM; )
+
« no previous file with comments | « no previous file | gyp/gmslides.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698