blob: 9898df491ebad566854cf2dbdf84d9a53f444eaf [file] [log] [blame]
Romain Guy5cbbce52010-06-27 22:59:20 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Romain Guy5b3b3522010-10-27 18:57:51 -070017#ifndef ANDROID_HWUI_SNAPSHOT_H
18#define ANDROID_HWUI_SNAPSHOT_H
Romain Guy5cbbce52010-06-27 22:59:20 -070019
20#include <GLES2/gl2.h>
21#include <GLES2/gl2ext.h>
22
23#include <utils/RefBase.h>
Romain Guy5b3b3522010-10-27 18:57:51 -070024#include <ui/Region.h>
Romain Guy5cbbce52010-06-27 22:59:20 -070025
Romain Guy8aef54f2010-09-01 15:13:49 -070026#include <SkCanvas.h>
Romain Guy079ba2c2010-07-16 14:12:24 -070027
Romain Guydda57022010-07-06 11:39:32 -070028#include "Layer.h"
Romain Guy5cbbce52010-06-27 22:59:20 -070029#include "Matrix.h"
30#include "Rect.h"
31
32namespace android {
33namespace uirenderer {
34
35/**
36 * A snapshot holds information about the current state of the rendering
37 * surface. A snapshot is usually created whenever the user calls save()
38 * and discarded when the user calls restore(). Once a snapshot is created,
39 * it can hold information for deferred rendering.
40 *
41 * Each snapshot has a link to a previous snapshot, indicating the previous
42 * state of the renderer.
43 */
44class Snapshot: public LightRefBase<Snapshot> {
45public:
Romain Guyaf636eb2010-12-09 17:47:21 -080046 Snapshot(): flags(0), previous(NULL), layer(NULL), fbo(0), invisible(false), empty(false) {
Romain Guy8aef54f2010-09-01 15:13:49 -070047 transform = &mTransformRoot;
48 clipRect = &mClipRectRoot;
Romain Guy5b3b3522010-10-27 18:57:51 -070049 region = NULL;
Romain Guy8aef54f2010-09-01 15:13:49 -070050 }
Romain Guy5cbbce52010-06-27 22:59:20 -070051
52 /**
Romain Guy8aef54f2010-09-01 15:13:49 -070053 * Copies the specified snapshot/ The specified snapshot is stored as
54 * the previous snapshot.
Romain Guy5cbbce52010-06-27 22:59:20 -070055 */
Romain Guy8aef54f2010-09-01 15:13:49 -070056 Snapshot(const sp<Snapshot>& s, int saveFlags):
Romain Guydbc26d22010-10-11 17:58:29 -070057 flags(0), previous(s), layer(NULL), fbo(s->fbo),
Romain Guyaf636eb2010-12-09 17:47:21 -080058 invisible(s->invisible), empty(false), viewport(s->viewport), height(s->height) {
Romain Guy8aef54f2010-09-01 15:13:49 -070059 if (saveFlags & SkCanvas::kMatrix_SaveFlag) {
60 mTransformRoot.load(*s->transform);
61 transform = &mTransformRoot;
62 } else {
63 transform = s->transform;
64 }
65
66 if (saveFlags & SkCanvas::kClip_SaveFlag) {
67 mClipRectRoot.set(*s->clipRect);
68 clipRect = &mClipRectRoot;
69 } else {
70 clipRect = s->clipRect;
71 }
72
Romain Guyb82da652010-07-30 11:36:12 -070073 if ((s->flags & Snapshot::kFlagClipSet) &&
74 !(s->flags & Snapshot::kFlagDirtyLocalClip)) {
Romain Guy8aef54f2010-09-01 15:13:49 -070075 mLocalClip.set(s->mLocalClip);
Romain Guyb82da652010-07-30 11:36:12 -070076 } else {
77 flags |= Snapshot::kFlagDirtyLocalClip;
78 }
Romain Guy5b3b3522010-10-27 18:57:51 -070079
80 if (s->flags & Snapshot::kFlagFboTarget) {
81 flags |= Snapshot::kFlagFboTarget;
82 region = s->region;
83 } else {
84 region = NULL;
85 }
Romain Guy5cbbce52010-06-27 22:59:20 -070086 }
87
88 /**
89 * Various flags set on #flags.
90 */
91 enum Flags {
92 /**
93 * Indicates that the clip region was modified. When this
94 * snapshot is restored so must the clip.
95 */
96 kFlagClipSet = 0x1,
97 /**
Romain Guy5cbbce52010-06-27 22:59:20 -070098 * Indicates that this snapshot was created when saving
99 * a new layer.
100 */
Romain Guy079ba2c2010-07-16 14:12:24 -0700101 kFlagIsLayer = 0x2,
Romain Guyf86ef572010-07-01 11:05:42 -0700102 /**
Romain Guyeb993562010-10-05 18:14:38 -0700103 * Indicates that this snapshot is a special type of layer
104 * backed by an FBO. This flag only makes sense when the
105 * flag kFlagIsLayer is also set.
106 */
107 kFlagIsFboLayer = 0x4,
108 /**
Romain Guy09147fb2010-07-22 13:08:20 -0700109 * Indicates that the local clip should be recomputed.
110 */
Romain Guyeb993562010-10-05 18:14:38 -0700111 kFlagDirtyLocalClip = 0x8,
112 /**
113 * Indicates that this snapshot has changed the ortho matrix.
114 */
115 kFlagDirtyOrtho = 0x10,
Romain Guy5b3b3522010-10-27 18:57:51 -0700116 /**
117 * Indicates that this snapshot or an ancestor snapshot is
118 * an FBO layer.
119 */
120 kFlagFboTarget = 0x20
Romain Guy5cbbce52010-06-27 22:59:20 -0700121 };
122
123 /**
Romain Guyf607bdc2010-09-10 19:20:06 -0700124 * Modifies the current clip with the new clip rectangle and
125 * the specified operation. The specified rectangle is transformed
126 * by this snapshot's trasnformation.
Romain Guy3d58c032010-07-14 16:34:53 -0700127 */
Romain Guyf607bdc2010-09-10 19:20:06 -0700128 bool clip(float left, float top, float right, float bottom,
129 SkRegion::Op op = SkRegion::kIntersect_Op) {
Romain Guyaf28b512010-08-12 14:34:44 -0700130 Rect r(left, top, right, bottom);
Romain Guy8aef54f2010-09-01 15:13:49 -0700131 transform->mapRect(r);
Romain Guyf607bdc2010-09-10 19:20:06 -0700132 return clipTransformed(r, op);
133 }
134
135 /**
136 * Modifies the current clip with the new clip rectangle and
137 * the specified operation. The specified rectangle is considered
138 * already transformed.
139 */
140 bool clipTransformed(const Rect& r, SkRegion::Op op = SkRegion::kIntersect_Op) {
141 bool clipped = false;
Romain Guy079ba2c2010-07-16 14:12:24 -0700142
Romain Guy87a76572010-09-13 18:11:21 -0700143 // NOTE: The unimplemented operations require support for regions
144 // Supporting regions would require using a stencil buffer instead
145 // of the scissor. The stencil buffer itself is not too expensive
146 // (memory cost excluded) but on fillrate limited devices, managing
147 // the stencil might have a negative impact on the framerate.
Romain Guy079ba2c2010-07-16 14:12:24 -0700148 switch (op) {
Romain Guy7fac2e12010-07-16 17:10:13 -0700149 case SkRegion::kDifference_Op:
150 break;
151 case SkRegion::kIntersect_Op:
Romain Guy8aef54f2010-09-01 15:13:49 -0700152 clipped = clipRect->intersect(r);
Romain Guy7fac2e12010-07-16 17:10:13 -0700153 break;
154 case SkRegion::kUnion_Op:
Romain Guy8aef54f2010-09-01 15:13:49 -0700155 clipped = clipRect->unionWith(r);
Romain Guy7fac2e12010-07-16 17:10:13 -0700156 break;
157 case SkRegion::kXOR_Op:
158 break;
159 case SkRegion::kReverseDifference_Op:
160 break;
161 case SkRegion::kReplace_Op:
Romain Guy8aef54f2010-09-01 15:13:49 -0700162 clipRect->set(r);
Romain Guy7fac2e12010-07-16 17:10:13 -0700163 clipped = true;
164 break;
Romain Guy5cbbce52010-06-27 22:59:20 -0700165 }
Romain Guy079ba2c2010-07-16 14:12:24 -0700166
167 if (clipped) {
Romain Guy09147fb2010-07-22 13:08:20 -0700168 flags |= Snapshot::kFlagClipSet | Snapshot::kFlagDirtyLocalClip;
Romain Guy079ba2c2010-07-16 14:12:24 -0700169 }
170
Romain Guy3d58c032010-07-14 16:34:53 -0700171 return clipped;
Romain Guy5cbbce52010-06-27 22:59:20 -0700172 }
173
174 /**
Romain Guyd27977d2010-07-14 19:18:51 -0700175 * Sets the current clip.
176 */
177 void setClip(float left, float top, float right, float bottom) {
Romain Guy8aef54f2010-09-01 15:13:49 -0700178 clipRect->set(left, top, right, bottom);
Romain Guy09147fb2010-07-22 13:08:20 -0700179 flags |= Snapshot::kFlagClipSet | Snapshot::kFlagDirtyLocalClip;
Romain Guy079ba2c2010-07-16 14:12:24 -0700180 }
181
182 const Rect& getLocalClip() {
Romain Guy09147fb2010-07-22 13:08:20 -0700183 if (flags & Snapshot::kFlagDirtyLocalClip) {
184 mat4 inverse;
Romain Guy8aef54f2010-09-01 15:13:49 -0700185 inverse.loadInverse(*transform);
Romain Guy959c91f2010-08-11 19:35:53 -0700186
Romain Guy8aef54f2010-09-01 15:13:49 -0700187 mLocalClip.set(*clipRect);
188 inverse.mapRect(mLocalClip);
Romain Guy959c91f2010-08-11 19:35:53 -0700189
Romain Guy09147fb2010-07-22 13:08:20 -0700190 flags &= ~Snapshot::kFlagDirtyLocalClip;
191 }
Romain Guy8aef54f2010-09-01 15:13:49 -0700192 return mLocalClip;
193 }
194
Romain Guyeb993562010-10-05 18:14:38 -0700195 void resetTransform(float x, float y, float z) {
196 transform = &mTransformRoot;
197 transform->loadTranslate(x, y, z);
198 }
199
200 void resetClip(float left, float top, float right, float bottom) {
201 clipRect = &mClipRectRoot;
202 clipRect->set(left, top, right, bottom);
203 flags |= Snapshot::kFlagClipSet | Snapshot::kFlagDirtyLocalClip;
204 }
205
Romain Guyaf636eb2010-12-09 17:47:21 -0800206 bool isIgnored() const {
207 return invisible || empty;
208 }
209
Romain Guy8b55f372010-08-18 17:10:07 -0700210 /**
Romain Guy5cbbce52010-06-27 22:59:20 -0700211 * Dirty flags.
212 */
213 int flags;
214
215 /**
216 * Previous snapshot.
217 */
218 sp<Snapshot> previous;
219
220 /**
Romain Guy5cbbce52010-06-27 22:59:20 -0700221 * Only set when the flag kFlagIsLayer is set.
222 */
Romain Guydda57022010-07-06 11:39:32 -0700223 Layer* layer;
Romain Guyf86ef572010-07-01 11:05:42 -0700224
Romain Guy8aef54f2010-09-01 15:13:49 -0700225 /**
Romain Guyeb993562010-10-05 18:14:38 -0700226 * Only set when the flag kFlagIsFboLayer is set.
227 */
228 GLuint fbo;
229
230 /**
Romain Guydbc26d22010-10-11 17:58:29 -0700231 * Indicates that this snapshot is invisible and nothing should be drawn
Romain Guyaf636eb2010-12-09 17:47:21 -0800232 * inside it. This flag is set only when the layer clips drawing to its
233 * bounds and is passed to subsequent snapshots.
Romain Guydbc26d22010-10-11 17:58:29 -0700234 */
235 bool invisible;
236
237 /**
Romain Guyaf636eb2010-12-09 17:47:21 -0800238 * If set to true, the layer will not be composited. This is similar to
239 * invisible but this flag is not passed to subsequent snapshots.
240 */
241 bool empty;
242
243 /**
Romain Guyeb993562010-10-05 18:14:38 -0700244 * Current viewport.
245 */
246 Rect viewport;
247
248 /**
249 * Height of the framebuffer the snapshot is rendering into.
250 */
251 int height;
252
253 /**
254 * Contains the previous ortho matrix.
255 */
256 mat4 orthoMatrix;
257
258 /**
Romain Guy8aef54f2010-09-01 15:13:49 -0700259 * Local transformation. Holds the current translation, scale and
260 * rotation values.
261 */
262 mat4* transform;
263
264 /**
265 * Current clip region. The clip is stored in canvas-space coordinates,
266 * (screen-space coordinates in the regular case.)
267 */
268 Rect* clipRect;
269
Romain Guy5b3b3522010-10-27 18:57:51 -0700270 /**
271 * The ancestor layer's dirty region..
272 */
273 Region* region;
274
Romain Guy5cbbce52010-06-27 22:59:20 -0700275private:
Romain Guy8aef54f2010-09-01 15:13:49 -0700276 mat4 mTransformRoot;
277 Rect mClipRectRoot;
278 Rect mLocalClip;
Romain Guy079ba2c2010-07-16 14:12:24 -0700279
Romain Guy5cbbce52010-06-27 22:59:20 -0700280}; // class Snapshot
281
282}; // namespace uirenderer
283}; // namespace android
284
Romain Guy5b3b3522010-10-27 18:57:51 -0700285#endif // ANDROID_HWUI_SNAPSHOT_H