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

Unified Diff: gm/picturesource.cpp

Issue 114263002: Implement an SkPicture image filter source. This is required for the external-SVG reference feature… (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years 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/effects.gypi » ('j') | include/effects/SkPictureSource.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/picturesource.cpp
diff --git a/gm/picturesource.cpp b/gm/picturesource.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..3e97b7e440a0f952a8e69bd2a96eba487de1264b
--- /dev/null
+++ b/gm/picturesource.cpp
@@ -0,0 +1,81 @@
+/*
+ * Copyright 2013 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 "SkPictureSource.h"
+
+// This GM exercises the SkPictureSource ImageFilter class.
+
+class PictureSourceGM : public skiagm::GM {
+public:
+ PictureSourceGM() {
+ }
+
+protected:
+ virtual SkString onShortName() SK_OVERRIDE {
+ return SkString("picturesource");
+ }
+
+ void makePicture() {
+ SkCanvas* canvas = fPicture.beginRecording(100, 100);
+ canvas->clear(0x00000000);
+ SkPaint paint;
+ paint.setAntiAlias(true);
+ paint.setColor(0xFFFFFFFF);
+ paint.setTextSize(SkIntToScalar(96));
+ const char* str = "e";
+ canvas->drawText(str, strlen(str), SkIntToScalar(20), SkIntToScalar(70), paint);
+ }
+
+ virtual SkISize onISize() SK_OVERRIDE { return SkISize::Make(500, 150); }
+
+ virtual void onOnceBeforeDraw() SK_OVERRIDE {
+ this->makePicture();
+ }
+
+ static void fillRectFiltered(SkCanvas* canvas, const SkRect& clipRect, SkImageFilter* filter) {
+ SkPaint paint;
+ paint.setImageFilter(filter);
+ canvas->save();
+ canvas->clipRect(clipRect);
+ canvas->drawPaint(paint);
+ canvas->restore();
+ }
+
+ virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
+ canvas->clear(0x00000000);
+ {
+ SkRect srcRect = SkRect::MakeXYWH(20, 20, 30, 30);
+ SkRect emptyRect = SkRect::MakeXYWH(20, 20, 0, 0);
+ SkRect bounds = SkRect::MakeXYWH(0, 0, 100, 100);
+ SkAutoTUnref<SkImageFilter> pictureSource(new SkPictureSource(fPicture));
+ SkAutoTUnref<SkImageFilter> pictureSourceSrcRect(new SkPictureSource(fPicture, srcRect));
+ SkAutoTUnref<SkImageFilter> pictureSourceEmptyRect(new SkPictureSource(fPicture, emptyRect));
+
+ // Draw the picture unscaled.
+ fillRectFiltered(canvas, bounds, pictureSource);
+ canvas->translate(SkIntToScalar(100), 0);
+
+ // Draw an unscaled subset of the source picture.
+ fillRectFiltered(canvas, bounds, pictureSourceSrcRect);
+ canvas->translate(SkIntToScalar(100), 0);
+
+ // Draw the picture to an empty rect (should draw nothing).
+ fillRectFiltered(canvas, bounds, pictureSourceEmptyRect);
+ canvas->translate(SkIntToScalar(100), 0);
+ }
+ }
+
+private:
+ SkPicture fPicture;
+ typedef GM INHERITED;
+};
+
+///////////////////////////////////////////////////////////////////////////////
+
+DEF_GM( return new PictureSourceGM; )
« no previous file with comments | « no previous file | gyp/effects.gypi » ('j') | include/effects/SkPictureSource.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698