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

Unified Diff: include/core/SkPixmap.h

Issue 1162013008: add extractSubset and SkAutoPixmapStorage (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 6 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 | src/core/SkPixmap.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/core/SkPixmap.h
diff --git a/include/core/SkPixmap.h b/include/core/SkPixmap.h
index 275fcd0dcacb4417ec0d0cb140774af69b460c4f..913d007c4dc98d82a4d5c51db4a65e62de684db9 100644
--- a/include/core/SkPixmap.h
+++ b/include/core/SkPixmap.h
@@ -11,6 +11,7 @@
#include "SkImageInfo.h"
class SkColorTable;
+struct SkMask;
/**
* Pairs SkImageInfo with actual pixels and rowbytes. This class does not try to manage the
@@ -36,6 +37,23 @@ public:
void reset();
void reset(const SkImageInfo& info, const void* addr, size_t rowBytes,
SkColorTable* ctable = NULL);
+ void reset(const SkImageInfo& info) {
+ this->reset(info, NULL, 0, NULL);
+ }
+
+ /**
+ * If supported, set this pixmap to point to the pixels in the specified mask and return true.
+ * On failure, return false and set this pixmap to empty.
+ */
+ bool SK_WARN_UNUSED_RESULT reset(const SkMask&);
+
+ /**
+ * Computes the intersection of area and this pixmap. If that intersection is non-empty,
+ * set subset to that intersection and return true.
+ *
+ * On failure, return false and ignore the subset parameter.
+ */
+ bool SK_WARN_UNUSED_RESULT extractSubset(SkPixmap* subset, const SkIRect& area) const;
const SkImageInfo& info() const { return fInfo; }
size_t rowBytes() const { return fRowBytes; }
@@ -124,6 +142,35 @@ private:
/////////////////////////////////////////////////////////////////////////////////////////////
+class SkAutoPixmapStorage : public SkPixmap {
+public:
+ SkAutoPixmapStorage();
+ ~SkAutoPixmapStorage();
+
+ /**
+ * Try to allocate memory for the pixels needed to match the specified Info. On success
+ * return true and fill out the pixmap to point to that memory. The storage will be freed
+ * when this object is destroyed, or if another call to tryAlloc() or alloc() is made.
+ *
+ * On failure, return false and reset() the pixmap to empty.
+ */
+ bool tryAlloc(const SkImageInfo&);
+
+ /**
+ * Allocate memory for the pixels needed to match the specified Info and fill out the pixmap
+ * to point to that memory. The storage will be freed when this object is destroyed,
+ * or if another call to tryAlloc() or alloc() is made.
+ *
+ * If the memory cannot be allocated, calls sk_throw().
+ */
+ void alloc(const SkImageInfo&);
+
+private:
+ void* fStorage;
+};
+
+/////////////////////////////////////////////////////////////////////////////////////////////
+
class SkAutoPixmapUnlock : ::SkNoncopyable {
public:
SkAutoPixmapUnlock() : fUnlockProc(NULL), fIsLocked(false) {}
« no previous file with comments | « no previous file | src/core/SkPixmap.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698