blob: 2ab118d5a71251111fe3e0bfc70b45133f36738d [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
2/*
3 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
reed@google.com5c3d1472011-02-22 19:12:23 +00008#ifndef SkClipStack_DEFINED
9#define SkClipStack_DEFINED
10
11#include "SkDeque.h"
12#include "SkRegion.h"
robertphillips@google.com46f93502012-08-07 15:38:08 +000013#include "SkTDArray.h"
reed@google.com5c3d1472011-02-22 19:12:23 +000014
bsalomon@google.com57788b52011-02-22 21:00:31 +000015struct SkRect;
reed@google.com5c3d1472011-02-22 19:12:23 +000016class SkPath;
17
robertphillips@google.com4c2a2f72012-07-24 22:07:50 +000018// Because a single save/restore state can have multiple clips, this class
19// stores the stack depth (fSaveCount) and clips (fDeque) separately.
20// Each clip in fDeque stores the stack state to which it belongs
21// (i.e., the fSaveCount in force when it was added). Restores are thus
22// implemented by removing clips from fDeque that have an fSaveCount larger
23// then the freshly decremented count.
ctguil@chromium.org7ffb1b22011-03-15 21:27:08 +000024class SK_API SkClipStack {
reed@google.com5c3d1472011-02-22 19:12:23 +000025public:
26 SkClipStack();
vandebo@chromium.org1e1c36f2011-05-03 16:26:09 +000027 SkClipStack(const SkClipStack& b);
robertphillips@google.comcc6493b2012-07-26 18:39:13 +000028 explicit SkClipStack(const SkRect& r);
robertphillips@google.com641f8b12012-07-31 19:15:58 +000029 explicit SkClipStack(const SkIRect& r);
vandebo@chromium.org610f7162012-03-14 18:34:15 +000030 ~SkClipStack();
reed@google.com5c3d1472011-02-22 19:12:23 +000031
vandebo@chromium.org1e1c36f2011-05-03 16:26:09 +000032 SkClipStack& operator=(const SkClipStack& b);
33 bool operator==(const SkClipStack& b) const;
34 bool operator!=(const SkClipStack& b) const { return !(*this == b); }
35
reed@google.com5c3d1472011-02-22 19:12:23 +000036 void reset();
37
38 int getSaveCount() const { return fSaveCount; }
39 void save();
40 void restore();
41
robertphillips@google.com607fe072012-07-24 13:54:00 +000042 enum BoundsType {
43 // The bounding box contains all the pixels that can be written to
44 kNormal_BoundsType,
45 // The bounding box contains all the pixels that cannot be written to.
46 // The real bound extends out to infinity and all the pixels outside
47 // of the bound can be written to. Note that some of the pixels inside
rmistry@google.comfbfcd562012-08-23 18:09:54 +000048 // the bound may also be writeable but all pixels that cannot be
robertphillips@google.com607fe072012-07-24 13:54:00 +000049 // written to are guaranteed to be inside.
50 kInsideOut_BoundsType
51 };
52
53 /**
54 * getBounds places the current finite bound in its first parameter. In its
rmistry@google.comfbfcd562012-08-23 18:09:54 +000055 * second, it indicates which kind of bound is being returned. If
robertphillips@google.com7b112892012-07-31 15:18:21 +000056 * 'canvFiniteBound' is a normal bounding box then it encloses all writeable
rmistry@google.comfbfcd562012-08-23 18:09:54 +000057 * pixels. If 'canvFiniteBound' is an inside out bounding box then it
robertphillips@google.com607fe072012-07-24 13:54:00 +000058 * encloses all the un-writeable pixels and the true/normal bound is the
robertphillips@google.com4c2a2f72012-07-24 22:07:50 +000059 * infinite plane. isIntersectionOfRects is an optional parameter
robertphillips@google.com7b112892012-07-31 15:18:21 +000060 * that is true if 'canvFiniteBound' resulted from an intersection of rects.
robertphillips@google.com607fe072012-07-24 13:54:00 +000061 */
rmistry@google.comfbfcd562012-08-23 18:09:54 +000062 void getBounds(SkRect* canvFiniteBound,
robertphillips@google.com4c2a2f72012-07-24 22:07:50 +000063 BoundsType* boundType,
64 bool* isIntersectionOfRects = NULL) const;
robertphillips@google.com607fe072012-07-24 13:54:00 +000065
reed@google.com115d9312012-05-16 18:50:40 +000066 void clipDevRect(const SkIRect& ir, SkRegion::Op op) {
reed@google.com5c3d1472011-02-22 19:12:23 +000067 SkRect r;
68 r.set(ir);
reed@google.com00177082011-10-12 14:34:30 +000069 this->clipDevRect(r, op, false);
reed@google.com5c3d1472011-02-22 19:12:23 +000070 }
reed@google.com00177082011-10-12 14:34:30 +000071 void clipDevRect(const SkRect&, SkRegion::Op, bool doAA);
72 void clipDevPath(const SkPath&, SkRegion::Op, bool doAA);
reed@google.com0557d9e2012-08-16 15:59:59 +000073 // An optimized version of clipDevRect(emptyRect, kIntersect, ...)
74 void clipEmpty();
reed@google.com5c3d1472011-02-22 19:12:23 +000075
robertphillips@google.comcc6493b2012-07-26 18:39:13 +000076 /**
rmistry@google.comfbfcd562012-08-23 18:09:54 +000077 * isWideOpen returns true if the clip state corresponds to the infinite
robertphillips@google.comcc6493b2012-07-26 18:39:13 +000078 * plane (i.e., draws are not limited at all)
79 */
80 bool isWideOpen() const;
81
robertphillips@google.com46f93502012-08-07 15:38:08 +000082 /**
83 * Add a callback function that will be called whenever a clip state
84 * is no longer viable. This will occur whenever restore
rmistry@google.comfbfcd562012-08-23 18:09:54 +000085 * is called or when a clipDevRect or clipDevPath call updates the
robertphillips@google.com46f93502012-08-07 15:38:08 +000086 * clip within an existing save/restore state. Each clip state is
87 * represented by a unique generation ID.
88 */
89 typedef void (*PFPurgeClipCB)(int genID, void* data);
90 void addPurgeClipCallback(PFPurgeClipCB callback, void* data) const;
91
92 /**
93 * Remove a callback added earlier via addPurgeClipCallback
94 */
95 void removePurgeClipCallback(PFPurgeClipCB callback, void* data) const;
96
97 /**
98 * The generation ID has three reserved values to indicate special
99 * (potentially ignoreable) cases
100 */
101 static const int32_t kInvalidGenID = 0;
102 static const int32_t kEmptyGenID = 1; // no pixels writeable
103 static const int32_t kWideOpenGenID = 2; // all pixels writeable
104
robertphillips@google.com73e71022012-08-09 18:10:49 +0000105 int32_t getTopmostGenID() const;
106
robertphillips@google.com52cb2c72012-07-16 18:52:29 +0000107private:
108 struct Rec;
109
110public:
111 class Iter {
reed@google.com5c3d1472011-02-22 19:12:23 +0000112 public:
robertphillips@google.com52cb2c72012-07-16 18:52:29 +0000113 enum IterStart {
robertphillips@google.com80214e22012-07-20 15:33:18 +0000114 kBottom_IterStart = SkDeque::Iter::kFront_IterStart,
115 kTop_IterStart = SkDeque::Iter::kBack_IterStart
robertphillips@google.com52cb2c72012-07-16 18:52:29 +0000116 };
117
bsalomon@google.comd302f142011-03-03 13:54:13 +0000118 /**
119 * Creates an uninitialized iterator. Must be reset()
120 */
robertphillips@google.com52cb2c72012-07-16 18:52:29 +0000121 Iter();
bsalomon@google.comd302f142011-03-03 13:54:13 +0000122
robertphillips@google.com52cb2c72012-07-16 18:52:29 +0000123 Iter(const SkClipStack& stack, IterStart startLoc);
reed@google.com5c3d1472011-02-22 19:12:23 +0000124
125 struct Clip {
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000126 Clip() : fRect(NULL), fPath(NULL), fOp(SkRegion::kIntersect_Op),
robertphillips@google.comfa1d2912012-04-16 14:49:14 +0000127 fDoAA(false) {}
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000128 friend bool operator==(const Clip& a, const Clip& b);
vandebo@chromium.org8887ede2011-05-25 01:27:52 +0000129 friend bool operator!=(const Clip& a, const Clip& b);
reed@google.com5c3d1472011-02-22 19:12:23 +0000130 const SkRect* fRect; // if non-null, this is a rect clip
131 const SkPath* fPath; // if non-null, this is a path clip
132 SkRegion::Op fOp;
reed@google.com00177082011-10-12 14:34:30 +0000133 bool fDoAA;
robertphillips@google.com73e71022012-08-09 18:10:49 +0000134 int32_t fGenID;
reed@google.com5c3d1472011-02-22 19:12:23 +0000135 };
136
137 /**
138 * Return the clip for this element in the iterator. If next() returns
139 * NULL, then the iterator is done. The type of clip is determined by
140 * the pointers fRect and fPath:
141 *
142 * fRect==NULL fPath!=NULL path clip
143 * fRect!=NULL fPath==NULL rect clip
144 * fRect==NULL fPath==NULL empty clip
145 */
146 const Clip* next();
robertphillips@google.com52cb2c72012-07-16 18:52:29 +0000147 const Clip* prev();
reed@google.com5c3d1472011-02-22 19:12:23 +0000148
bsalomon@google.comd302f142011-03-03 13:54:13 +0000149 /**
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000150 * Moves the iterator to the topmost clip with the specified RegionOp
151 * and returns that clip. If no clip with that op is found,
robertphillips@google.com5836b6d2012-07-18 12:06:15 +0000152 * returns NULL.
153 */
robertphillips@google.com80214e22012-07-20 15:33:18 +0000154 const Clip* skipToTopmost(SkRegion::Op op);
robertphillips@google.com5836b6d2012-07-18 12:06:15 +0000155
156 /**
bsalomon@google.comd302f142011-03-03 13:54:13 +0000157 * Restarts the iterator on a clip stack.
158 */
robertphillips@google.com52cb2c72012-07-16 18:52:29 +0000159 void reset(const SkClipStack& stack, IterStart startLoc);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000160
reed@google.com5c3d1472011-02-22 19:12:23 +0000161 private:
robertphillips@google.com5836b6d2012-07-18 12:06:15 +0000162 const SkClipStack* fStack;
163 Clip fClip;
164 SkDeque::Iter fIter;
robertphillips@google.com52cb2c72012-07-16 18:52:29 +0000165
166 /**
167 * updateClip updates fClip to the current state of fIter. It unifies
168 * functionality needed by both next() and prev().
169 */
170 const Clip* updateClip(const SkClipStack::Rec* rec);
171 };
172
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000173 /**
robertphillips@google.com80214e22012-07-20 15:33:18 +0000174 * The B2TIter iterates from the bottom of the stack to the top.
175 * It inherits privately from Iter to prevent access to reverse iteration.
176 */
177 class B2TIter : private Iter {
robertphillips@google.com52cb2c72012-07-16 18:52:29 +0000178 public:
robertphillips@google.com80214e22012-07-20 15:33:18 +0000179 B2TIter() {}
robertphillips@google.com52cb2c72012-07-16 18:52:29 +0000180
181 /**
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000182 * Wrap Iter's 2 parameter ctor to force initialization to the
robertphillips@google.com80214e22012-07-20 15:33:18 +0000183 * beginning of the deque/bottom of the stack
robertphillips@google.com52cb2c72012-07-16 18:52:29 +0000184 */
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000185 B2TIter(const SkClipStack& stack)
robertphillips@google.com80214e22012-07-20 15:33:18 +0000186 : INHERITED(stack, kBottom_IterStart) {
robertphillips@google.com52cb2c72012-07-16 18:52:29 +0000187 }
188
189 using Iter::Clip;
190 using Iter::next;
191
192 /**
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000193 * Wrap Iter::reset to force initialization to the
robertphillips@google.com80214e22012-07-20 15:33:18 +0000194 * beginning of the deque/bottom of the stack
robertphillips@google.com52cb2c72012-07-16 18:52:29 +0000195 */
196 void reset(const SkClipStack& stack) {
robertphillips@google.com80214e22012-07-20 15:33:18 +0000197 this->INHERITED::reset(stack, kBottom_IterStart);
robertphillips@google.com52cb2c72012-07-16 18:52:29 +0000198 }
199
200 private:
201
202 typedef Iter INHERITED;
reed@google.com5c3d1472011-02-22 19:12:23 +0000203 };
204
robertphillips@google.com607fe072012-07-24 13:54:00 +0000205 /**
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000206 * GetConservativeBounds returns a conservative bound of the current clip.
207 * Since this could be the infinite plane (if inverse fills were involved) the
208 * maxWidth and maxHeight parameters can be used to limit the returned bound
robertphillips@google.com607fe072012-07-24 13:54:00 +0000209 * to the expected drawing area. Similarly, the offsetX and offsetY parameters
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000210 * allow the caller to offset the returned bound to account for translated
robertphillips@google.com607fe072012-07-24 13:54:00 +0000211 * drawing areas (i.e., those resulting from a saveLayer). For finite bounds,
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000212 * the translation (+offsetX, +offsetY) is applied before the clamp to the
robertphillips@google.com607fe072012-07-24 13:54:00 +0000213 * maximum rectangle: [0,maxWidth) x [0,maxHeight).
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000214 * isIntersectionOfRects is an optional parameter that is true when
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000215 * 'devBounds' is the result of an intersection of rects. In this case
216 * 'devBounds' is the exact answer/clip.
robertphillips@google.com607fe072012-07-24 13:54:00 +0000217 */
218 void getConservativeBounds(int offsetX,
219 int offsetY,
220 int maxWidth,
221 int maxHeight,
robertphillips@google.com7b112892012-07-31 15:18:21 +0000222 SkRect* devBounds,
robertphillips@google.com4c2a2f72012-07-24 22:07:50 +0000223 bool* isIntersectionOfRects = NULL) const;
robertphillips@google.com607fe072012-07-24 13:54:00 +0000224
reed@google.com5c3d1472011-02-22 19:12:23 +0000225private:
robertphillips@google.com52cb2c72012-07-16 18:52:29 +0000226 friend class Iter;
reed@google.com5c3d1472011-02-22 19:12:23 +0000227
228 SkDeque fDeque;
229 int fSaveCount;
robertphillips@google.com46f93502012-08-07 15:38:08 +0000230
231 // Generation ID for the clip stack. This is incremented for each
232 // clipDevRect and clipDevPath call. 0 is reserved to indicate an
233 // invalid ID.
234 static int32_t gGenID;
235
236 struct ClipCallbackData {
237 PFPurgeClipCB fCallback;
238 void* fData;
239
240 friend bool operator==(const ClipCallbackData& a,
241 const ClipCallbackData& b) {
242 return a.fCallback == b.fCallback && a.fData == b.fData;
243 }
244 };
245
246 mutable SkTDArray<ClipCallbackData> fCallbackData;
247
248 /**
249 * Invoke all the purge callbacks passing in rec's generation ID.
250 */
251 void purgeClip(Rec* rec);
252
253 /**
254 * Return the next unique generation ID.
255 */
256 static int32_t GetNextGenID();
reed@google.com5c3d1472011-02-22 19:12:23 +0000257};
258
259#endif
260