diff options
author | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-08-09 18:10:49 +0000 |
---|---|---|
committer | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-08-09 18:10:49 +0000 |
commit | 73e71023a05393ef0aa12bf3644a1c704feeec0c (patch) | |
tree | e10898eed6b7721bbd5b234f0f496bc1d7f2e976 /include/core | |
parent | d74e710c00700aea603d7843d3ff670043bb1c15 (diff) |
Added method of getting top genID from SkClipStack
http://codereview.appspot.com/6446108/
git-svn-id: http://skia.googlecode.com/svn/trunk@5034 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/core')
-rw-r--r-- | include/core/SkClipStack.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/core/SkClipStack.h b/include/core/SkClipStack.h index 077c4b7eea..7ebd4928d1 100644 --- a/include/core/SkClipStack.h +++ b/include/core/SkClipStack.h @@ -100,6 +100,8 @@ public: static const int32_t kEmptyGenID = 1; // no pixels writeable static const int32_t kWideOpenGenID = 2; // all pixels writeable + int32_t getTopmostGenID() const; + private: struct Rec; @@ -127,6 +129,7 @@ public: const SkPath* fPath; // if non-null, this is a path clip SkRegion::Op fOp; bool fDoAA; + int32_t fGenID; }; /** |