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

Unified Diff: gm/peekpixels.cpp

Issue 163603003: add peekPixels to SkCanvas and SkSurface (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 6 years, 10 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 | « gm/offsetimagefilter.cpp ('k') | gm/tileimagefilter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/peekpixels.cpp
diff --git a/gm/peekpixels.cpp b/gm/peekpixels.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..c6744d3abeb687b59e47156c1646edc58d4815d7
--- /dev/null
+++ b/gm/peekpixels.cpp
@@ -0,0 +1,78 @@
+/*
+ * Copyright 2011 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 "SkCanvas.h"
+#include "SkPath.h"
+#include "SkSurface.h"
+#include "SkPicture.h"
+
+static void draw_content(SkCanvas* canvas) {
+ SkImageInfo info = canvas->imageInfo();
+ SkPaint paint;
+ paint.setAntiAlias(true);
+ canvas->drawCircle(SkScalarHalf(info.width()), SkScalarHalf(info.height()),
+ SkScalarHalf(info.width()), paint);
+}
+
+class PeekPixelsGM : public skiagm::GM {
+public:
+ PeekPixelsGM() {}
+
+protected:
+ virtual SkString onShortName() SK_OVERRIDE {
+ return SkString("peekpixels");
+ }
+
+ virtual SkISize onISize() SK_OVERRIDE {
+ return SkISize::Make(640, 480);
+ }
+
+ virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
+ SkImageInfo info = SkImageInfo::MakeN32Premul(100, 100);
+ SkAutoTUnref<SkSurface> surface(canvas->newSurface(info));
+ if (surface.get()) {
+ SkCanvas* surfCanvas = surface->getCanvas();
+
+ draw_content(surfCanvas);
+ SkBitmap bitmap;
+
+ // test peekPixels
+ {
+ SkImageInfo info;
+ size_t rowBytes;
+ const void* addr = surfCanvas->peekPixels(&info, &rowBytes);
+ if (addr && bitmap.installPixels(info, const_cast<void*>(addr),
+ rowBytes, NULL, NULL)) {
+ canvas->drawBitmap(bitmap, 0, 0, NULL);
+ }
+ }
+
+ // test ROCanvasPixels
+ canvas->translate(120, 0);
+ SkAutoROCanvasPixels ropixels(surfCanvas);
+ if (ropixels.asROBitmap(&bitmap)) {
+ canvas->drawBitmap(bitmap, 0, 0, NULL);
+ }
+
+ // test Surface
+ canvas->translate(120, 0);
+ surface->draw(canvas, 0, 0, NULL);
+ }
+ }
+
+ virtual uint32_t onGetFlags() const {
+ // we explicitly test peekPixels and readPixels, neither of which
+ // return something for a picture-backed canvas, so we skip that test.
+ return kSkipPicture_Flag;
+ }
+
+private:
+ typedef skiagm::GM INHERITED;
+};
+
+DEF_GM( return SkNEW(PeekPixelsGM); )
« no previous file with comments | « gm/offsetimagefilter.cpp ('k') | gm/tileimagefilter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698