blob: b2bc879760e415b826119077fbf00b1d0e75cbd4 [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 Guyada4d532012-02-02 17:31:16 -080026#include <SkRegion.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 Guyada4d532012-02-02 17:31:16 -080046
47 Snapshot();
48 Snapshot(const sp<Snapshot>& s, int saveFlags);
Romain Guy5cbbce52010-06-27 22:59:20 -070049
50 /**
Romain Guyada4d532012-02-02 17:31:16 -080051 * Various flags set on ::flags.
Romain Guy5cbbce52010-06-27 22:59:20 -070052 */
53 enum Flags {
54 /**
55 * Indicates that the clip region was modified. When this
56 * snapshot is restored so must the clip.
57 */
58 kFlagClipSet = 0x1,
59 /**
Romain Guy5cbbce52010-06-27 22:59:20 -070060 * Indicates that this snapshot was created when saving
61 * a new layer.
62 */
Romain Guy079ba2c2010-07-16 14:12:24 -070063 kFlagIsLayer = 0x2,
Romain Guyf86ef572010-07-01 11:05:42 -070064 /**
Romain Guyeb993562010-10-05 18:14:38 -070065 * Indicates that this snapshot is a special type of layer
66 * backed by an FBO. This flag only makes sense when the
67 * flag kFlagIsLayer is also set.
68 */
69 kFlagIsFboLayer = 0x4,
70 /**
Romain Guyeb993562010-10-05 18:14:38 -070071 * Indicates that this snapshot has changed the ortho matrix.
72 */
Romain Guyed7a8fc2011-10-04 19:21:27 -070073 kFlagDirtyOrtho = 0x8,
Romain Guy5b3b3522010-10-27 18:57:51 -070074 /**
75 * Indicates that this snapshot or an ancestor snapshot is
76 * an FBO layer.
77 */
Romain Guyed7a8fc2011-10-04 19:21:27 -070078 kFlagFboTarget = 0x10
Romain Guy5cbbce52010-06-27 22:59:20 -070079 };
80
81 /**
Romain Guyf607bdc2010-09-10 19:20:06 -070082 * Modifies the current clip with the new clip rectangle and
83 * the specified operation. The specified rectangle is transformed
84 * by this snapshot's trasnformation.
Romain Guy3d58c032010-07-14 16:34:53 -070085 */
Romain Guyf607bdc2010-09-10 19:20:06 -070086 bool clip(float left, float top, float right, float bottom,
Romain Guyada4d532012-02-02 17:31:16 -080087 SkRegion::Op op = SkRegion::kIntersect_Op);
Romain Guyf607bdc2010-09-10 19:20:06 -070088
89 /**
90 * Modifies the current clip with the new clip rectangle and
91 * the specified operation. The specified rectangle is considered
92 * already transformed.
93 */
Romain Guyada4d532012-02-02 17:31:16 -080094 bool clipTransformed(const Rect& r, SkRegion::Op op = SkRegion::kIntersect_Op);
Romain Guy5cbbce52010-06-27 22:59:20 -070095
96 /**
Romain Guyd27977d2010-07-14 19:18:51 -070097 * Sets the current clip.
98 */
Romain Guyada4d532012-02-02 17:31:16 -080099 void setClip(float left, float top, float right, float bottom);
Romain Guy079ba2c2010-07-16 14:12:24 -0700100
Romain Guyada4d532012-02-02 17:31:16 -0800101 /**
102 * Returns the current clip in local coordinates. The clip rect is
103 * transformed by the inverse transform matrix.
104 */
105 const Rect& getLocalClip();
Romain Guy959c91f2010-08-11 19:35:53 -0700106
Romain Guyada4d532012-02-02 17:31:16 -0800107 /**
108 * Resets the clip to the specified rect.
109 */
110 void resetClip(float left, float top, float right, float bottom);
Romain Guy959c91f2010-08-11 19:35:53 -0700111
Romain Guyada4d532012-02-02 17:31:16 -0800112 /**
113 * Resets the current transform to a pure 3D translation.
114 */
115 void resetTransform(float x, float y, float z);
Romain Guy8aef54f2010-09-01 15:13:49 -0700116
Romain Guyada4d532012-02-02 17:31:16 -0800117 /**
118 * Indicates whether this snapshot should be ignored. A snapshot
119 * is typicalled ignored if its layer is invisible or empty.
120 */
121 bool isIgnored() const;
Romain Guyaf636eb2010-12-09 17:47:21 -0800122
Romain Guy8b55f372010-08-18 17:10:07 -0700123 /**
Romain Guy5cbbce52010-06-27 22:59:20 -0700124 * Dirty flags.
125 */
126 int flags;
127
128 /**
129 * Previous snapshot.
130 */
131 sp<Snapshot> previous;
132
133 /**
Romain Guy5cbbce52010-06-27 22:59:20 -0700134 * Only set when the flag kFlagIsLayer is set.
Romain Guyada4d532012-02-02 17:31:16 -0800135 *
136 * This snapshot does not own the layer, this pointer must not be freed.
Romain Guy5cbbce52010-06-27 22:59:20 -0700137 */
Romain Guydda57022010-07-06 11:39:32 -0700138 Layer* layer;
Romain Guyf86ef572010-07-01 11:05:42 -0700139
Romain Guy8aef54f2010-09-01 15:13:49 -0700140 /**
Romain Guy421458a2011-11-21 15:14:37 -0800141 * Target FBO used for rendering. Set to 0 when rendering directly
142 * into the framebuffer.
Romain Guyeb993562010-10-05 18:14:38 -0700143 */
144 GLuint fbo;
145
146 /**
Romain Guydbc26d22010-10-11 17:58:29 -0700147 * Indicates that this snapshot is invisible and nothing should be drawn
Romain Guyaf636eb2010-12-09 17:47:21 -0800148 * inside it. This flag is set only when the layer clips drawing to its
149 * bounds and is passed to subsequent snapshots.
Romain Guydbc26d22010-10-11 17:58:29 -0700150 */
151 bool invisible;
152
153 /**
Romain Guyaf636eb2010-12-09 17:47:21 -0800154 * If set to true, the layer will not be composited. This is similar to
155 * invisible but this flag is not passed to subsequent snapshots.
156 */
157 bool empty;
158
159 /**
Romain Guyeb993562010-10-05 18:14:38 -0700160 * Current viewport.
161 */
162 Rect viewport;
163
164 /**
165 * Height of the framebuffer the snapshot is rendering into.
166 */
167 int height;
168
169 /**
170 * Contains the previous ortho matrix.
171 */
172 mat4 orthoMatrix;
173
174 /**
Romain Guy8aef54f2010-09-01 15:13:49 -0700175 * Local transformation. Holds the current translation, scale and
176 * rotation values.
Romain Guyada4d532012-02-02 17:31:16 -0800177 *
178 * This is a reference to a matrix owned by this snapshot or another
179 * snapshot. This pointer must not be freed. See ::mTransformRoot.
Romain Guy8aef54f2010-09-01 15:13:49 -0700180 */
181 mat4* transform;
182
183 /**
Romain Guy967e2bf2012-02-07 17:04:34 -0800184 * Current clip rect. The clip is stored in canvas-space coordinates,
Romain Guy8aef54f2010-09-01 15:13:49 -0700185 * (screen-space coordinates in the regular case.)
Romain Guyada4d532012-02-02 17:31:16 -0800186 *
187 * This is a reference to a rect owned by this snapshot or another
188 * snapshot. This pointer must not be freed. See ::mClipRectRoot.
Romain Guy8aef54f2010-09-01 15:13:49 -0700189 */
190 Rect* clipRect;
191
Romain Guy5b3b3522010-10-27 18:57:51 -0700192 /**
Romain Guy967e2bf2012-02-07 17:04:34 -0800193 * Current clip region. The clip is stored in canvas-space coordinates,
194 * (screen-space coordinates in the regular case.)
195 *
196 * This is a reference to a region owned by this snapshot or another
197 * snapshot. This pointer must not be freed. See ::mClipRegionRoot.
198 *
199 * This field is used only if STENCIL_BUFFER_SIZE is > 0.
200 */
201 Region* clipRegion;
202
203 /**
Romain Guyf219da52011-01-16 12:54:25 -0800204 * The ancestor layer's dirty region.
Romain Guyada4d532012-02-02 17:31:16 -0800205 *
206 * This is a reference to a region owned by a layer. This pointer must
207 * not be freed.
Romain Guy5b3b3522010-10-27 18:57:51 -0700208 */
209 Region* region;
210
Romain Guy5cbbce52010-06-27 22:59:20 -0700211private:
Romain Guy967e2bf2012-02-07 17:04:34 -0800212 void ensureClipRegion();
213 void copyClipRectFromRegion();
214
215 bool clipRegionOr(float left, float top, float right, float bottom);
216 bool clipRegionXor(float left, float top, float right, float bottom);
217 bool clipRegionAnd(float left, float top, float right, float bottom);
218 bool clipRegionNand(float left, float top, float right, float bottom);
219
Romain Guy8aef54f2010-09-01 15:13:49 -0700220 mat4 mTransformRoot;
221 Rect mClipRectRoot;
222 Rect mLocalClip;
Romain Guy079ba2c2010-07-16 14:12:24 -0700223
Romain Guy967e2bf2012-02-07 17:04:34 -0800224#if STENCIL_BUFFER_SIZE
225 Region mClipRegionRoot;
226#endif
227
Romain Guy5cbbce52010-06-27 22:59:20 -0700228}; // class Snapshot
229
230}; // namespace uirenderer
231}; // namespace android
232
Romain Guy5b3b3522010-10-27 18:57:51 -0700233#endif // ANDROID_HWUI_SNAPSHOT_H