blob: 0ac2f1411140680a91021de556b7e3baa2560819 [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
Chris Craikdeeda3d2014-05-05 19:09:33 -070023#include <utils/LinearAllocator.h>
Romain Guy5cbbce52010-06-27 22:59:20 -070024#include <utils/RefBase.h>
Romain Guy5b3b3522010-10-27 18:57:51 -070025#include <ui/Region.h>
Romain Guy5cbbce52010-06-27 22:59:20 -070026
Romain Guyada4d532012-02-02 17:31:16 -080027#include <SkRegion.h>
Romain Guy079ba2c2010-07-16 14:12:24 -070028
Rob Tsuk487a92c2015-01-06 13:22:54 -080029#include "ClipArea.h"
Romain Guydda57022010-07-06 11:39:32 -070030#include "Layer.h"
Romain Guy5cbbce52010-06-27 22:59:20 -070031#include "Matrix.h"
Chris Craikdeeda3d2014-05-05 19:09:33 -070032#include "Outline.h"
Romain Guy5cbbce52010-06-27 22:59:20 -070033#include "Rect.h"
Chris Craikdeeda3d2014-05-05 19:09:33 -070034#include "utils/Macros.h"
Romain Guy5cbbce52010-06-27 22:59:20 -070035
36namespace android {
37namespace uirenderer {
38
39/**
Chris Craikdeeda3d2014-05-05 19:09:33 -070040 * Temporary structure holding information for a single outline clip.
41 *
42 * These structures are treated as immutable once created, and only exist for a single frame, which
43 * is why they may only be allocated with a LinearAllocator.
44 */
45class RoundRectClipState {
46public:
47 /** static void* operator new(size_t size); PURPOSELY OMITTED, allocator only **/
48 static void* operator new(size_t size, LinearAllocator& allocator) {
John Reck7df9ff22016-02-10 16:08:08 -080049 return allocator.alloc<RoundRectClipState>(size);
Chris Craikdeeda3d2014-05-05 19:09:33 -070050 }
51
52 bool areaRequiresRoundRectClip(const Rect& rect) const {
53 return rect.intersects(dangerRects[0])
54 || rect.intersects(dangerRects[1])
55 || rect.intersects(dangerRects[2])
56 || rect.intersects(dangerRects[3]);
57 }
58
Chris Craike83cbd42014-09-03 17:52:24 -070059 bool highPriority;
Chris Craikdeeda3d2014-05-05 19:09:33 -070060 Matrix4 matrix;
61 Rect dangerRects[4];
Chris Craikaf4d04c2014-07-29 12:50:14 -070062 Rect innerRect;
63 float radius;
Chris Craikdeeda3d2014-05-05 19:09:33 -070064};
65
Chris Craikfca52b752015-04-28 11:45:59 -070066class ProjectionPathMask {
67public:
68 /** static void* operator new(size_t size); PURPOSELY OMITTED, allocator only **/
69 static void* operator new(size_t size, LinearAllocator& allocator) {
John Reck7df9ff22016-02-10 16:08:08 -080070 return allocator.alloc<ProjectionPathMask>(size);
Chris Craikfca52b752015-04-28 11:45:59 -070071 }
72
73 const SkPath* projectionMask;
74 Matrix4 projectionMaskTransform;
75};
76
Chris Craikdeeda3d2014-05-05 19:09:33 -070077/**
Romain Guy5cbbce52010-06-27 22:59:20 -070078 * A snapshot holds information about the current state of the rendering
79 * surface. A snapshot is usually created whenever the user calls save()
80 * and discarded when the user calls restore(). Once a snapshot is created,
81 * it can hold information for deferred rendering.
82 *
83 * Each snapshot has a link to a previous snapshot, indicating the previous
84 * state of the renderer.
85 */
John Reckd9ee5502015-10-06 10:06:37 -070086class Snapshot {
Romain Guy5cbbce52010-06-27 22:59:20 -070087public:
Romain Guyada4d532012-02-02 17:31:16 -080088
89 Snapshot();
John Reckd9ee5502015-10-06 10:06:37 -070090 Snapshot(Snapshot* s, int saveFlags);
Romain Guy5cbbce52010-06-27 22:59:20 -070091
92 /**
Romain Guyada4d532012-02-02 17:31:16 -080093 * Various flags set on ::flags.
Romain Guy5cbbce52010-06-27 22:59:20 -070094 */
95 enum Flags {
96 /**
97 * Indicates that the clip region was modified. When this
98 * snapshot is restored so must the clip.
99 */
100 kFlagClipSet = 0x1,
101 /**
Romain Guy5cbbce52010-06-27 22:59:20 -0700102 * Indicates that this snapshot was created when saving
103 * a new layer.
104 */
Romain Guy079ba2c2010-07-16 14:12:24 -0700105 kFlagIsLayer = 0x2,
Romain Guyf86ef572010-07-01 11:05:42 -0700106 /**
Romain Guyeb993562010-10-05 18:14:38 -0700107 * Indicates that this snapshot is a special type of layer
108 * backed by an FBO. This flag only makes sense when the
109 * flag kFlagIsLayer is also set.
Chris Craika64a2be2014-05-14 14:17:01 -0700110 *
111 * Viewport has been modified to fit the new Fbo, and must be
112 * restored when this snapshot is restored.
Romain Guyeb993562010-10-05 18:14:38 -0700113 */
114 kFlagIsFboLayer = 0x4,
115 /**
Romain Guy5b3b3522010-10-27 18:57:51 -0700116 * Indicates that this snapshot or an ancestor snapshot is
117 * an FBO layer.
118 */
Chris Craikb87eadd2016-01-06 09:16:05 -0800119 kFlagFboTarget = 0x8, // TODO: remove for HWUI_NEW_OPS
Romain Guy5cbbce52010-06-27 22:59:20 -0700120 };
121
122 /**
Romain Guyf607bdc2010-09-10 19:20:06 -0700123 * Modifies the current clip with the new clip rectangle and
124 * the specified operation. The specified rectangle is transformed
125 * by this snapshot's trasnformation.
Romain Guy3d58c032010-07-14 16:34:53 -0700126 */
Chris Craika2a70722015-12-17 12:58:24 -0800127 void clip(const Rect& localClip, SkRegion::Op op);
Romain Guyf607bdc2010-09-10 19:20:06 -0700128
129 /**
130 * Modifies the current clip with the new clip rectangle and
131 * the specified operation. The specified rectangle is considered
132 * already transformed.
133 */
Chris Craik4d3e7042015-08-20 12:54:25 -0700134 void clipTransformed(const Rect& r, SkRegion::Op op = SkRegion::kIntersect_Op);
Romain Guy5cbbce52010-06-27 22:59:20 -0700135
136 /**
Romain Guy8ce00302013-01-15 18:51:42 -0800137 * Modifies the current clip with the specified region and operation.
138 * The specified region is considered already transformed.
139 */
Chris Craik4d3e7042015-08-20 12:54:25 -0700140 void clipRegionTransformed(const SkRegion& region, SkRegion::Op op);
Romain Guy8ce00302013-01-15 18:51:42 -0800141
142 /**
Rob Tsuk487a92c2015-01-06 13:22:54 -0800143 * Modifies the current clip with the specified path and operation.
144 */
Chris Craik4d3e7042015-08-20 12:54:25 -0700145 void clipPath(const SkPath& path, SkRegion::Op op);
Rob Tsuk487a92c2015-01-06 13:22:54 -0800146
147 /**
Romain Guyd27977d2010-07-14 19:18:51 -0700148 * Sets the current clip.
149 */
Romain Guyada4d532012-02-02 17:31:16 -0800150 void setClip(float left, float top, float right, float bottom);
Romain Guy079ba2c2010-07-16 14:12:24 -0700151
Romain Guyada4d532012-02-02 17:31:16 -0800152 /**
153 * Returns the current clip in local coordinates. The clip rect is
154 * transformed by the inverse transform matrix.
155 */
Ben Cheng1a498682014-05-17 15:37:26 -0700156 ANDROID_API const Rect& getLocalClip();
Chris Craik3f0854292014-04-15 16:18:08 -0700157
158 /**
159 * Returns the current clip in render target coordinates.
160 */
Chris Craik6fe991e52015-10-20 09:39:42 -0700161 const Rect& getRenderTargetClip() const { return mClipArea->getClipRect(); }
Rob Tsuk487a92c2015-01-06 13:22:54 -0800162
163 /*
164 * Accessor functions so that the clip area can stay private
165 */
166 bool clipIsEmpty() const { return mClipArea->isEmpty(); }
Rob Tsuk487a92c2015-01-06 13:22:54 -0800167 const SkRegion& getClipRegion() const { return mClipArea->getClipRegion(); }
168 bool clipIsSimple() const { return mClipArea->isSimple(); }
169 const ClipArea& getClipArea() const { return *mClipArea; }
Chris Craike4db79d2015-12-22 16:32:23 -0800170 ClipArea& mutateClipArea() { return *mClipArea; }
Romain Guy959c91f2010-08-11 19:35:53 -0700171
Romain Guyada4d532012-02-02 17:31:16 -0800172 /**
173 * Resets the clip to the specified rect.
174 */
175 void resetClip(float left, float top, float right, float bottom);
Romain Guy959c91f2010-08-11 19:35:53 -0700176
Romain Guyada4d532012-02-02 17:31:16 -0800177 /**
178 * Resets the current transform to a pure 3D translation.
179 */
180 void resetTransform(float x, float y, float z);
Romain Guy8aef54f2010-09-01 15:13:49 -0700181
Chris Craika64a2be2014-05-14 14:17:01 -0700182 void initializeViewport(int width, int height) {
183 mViewportData.initialize(width, height);
Rob Tsuk487a92c2015-01-06 13:22:54 -0800184 mClipAreaRoot.setViewportDimensions(width, height);
Chris Craika64a2be2014-05-14 14:17:01 -0700185 }
186
187 int getViewportWidth() const { return mViewportData.mWidth; }
188 int getViewportHeight() const { return mViewportData.mHeight; }
189 const Matrix4& getOrthoMatrix() const { return mViewportData.mOrthoMatrix; }
190
Chris Craik69e5adf2014-08-14 13:34:01 -0700191 const Vector3& getRelativeLightCenter() const { return mRelativeLightCenter; }
192 void setRelativeLightCenter(const Vector3& lightCenter) { mRelativeLightCenter = lightCenter; }
193
Romain Guyada4d532012-02-02 17:31:16 -0800194 /**
Chris Craikdeeda3d2014-05-05 19:09:33 -0700195 * Sets (and replaces) the current clipping outline
Chris Craike83cbd42014-09-03 17:52:24 -0700196 *
197 * If the current round rect clip is high priority, the incoming clip is ignored.
Chris Craikdeeda3d2014-05-05 19:09:33 -0700198 */
Chris Craike83cbd42014-09-03 17:52:24 -0700199 void setClippingRoundRect(LinearAllocator& allocator, const Rect& bounds,
200 float radius, bool highPriority);
Chris Craikdeeda3d2014-05-05 19:09:33 -0700201
202 /**
Chris Craikfca52b752015-04-28 11:45:59 -0700203 * Sets (and replaces) the current projection mask
204 */
205 void setProjectionPathMask(LinearAllocator& allocator, const SkPath* path);
206
207 /**
Romain Guyada4d532012-02-02 17:31:16 -0800208 * Indicates whether this snapshot should be ignored. A snapshot
Rob Tsuk487a92c2015-01-06 13:22:54 -0800209 * is typically ignored if its layer is invisible or empty.
Romain Guyada4d532012-02-02 17:31:16 -0800210 */
211 bool isIgnored() const;
Romain Guyaf636eb2010-12-09 17:47:21 -0800212
Romain Guy8b55f372010-08-18 17:10:07 -0700213 /**
Romain Guya3dc55f2012-09-28 13:55:44 -0700214 * Indicates whether the current transform has perspective components.
215 */
216 bool hasPerspectiveTransform() const;
217
218 /**
Chris Craikfca52b752015-04-28 11:45:59 -0700219 * Fills outTransform with the current, total transform to screen space,
220 * across layer boundaries.
221 */
222 void buildScreenSpaceTransform(Matrix4* outTransform) const;
223
224 /**
Romain Guy5cbbce52010-06-27 22:59:20 -0700225 * Dirty flags.
226 */
227 int flags;
228
229 /**
230 * Previous snapshot.
231 */
John Reckd9ee5502015-10-06 10:06:37 -0700232 Snapshot* previous;
Romain Guy5cbbce52010-06-27 22:59:20 -0700233
234 /**
Romain Guy8ce00302013-01-15 18:51:42 -0800235 * A pointer to the currently active layer.
Romain Guyada4d532012-02-02 17:31:16 -0800236 *
237 * This snapshot does not own the layer, this pointer must not be freed.
Romain Guy5cbbce52010-06-27 22:59:20 -0700238 */
Romain Guydda57022010-07-06 11:39:32 -0700239 Layer* layer;
Romain Guyf86ef572010-07-01 11:05:42 -0700240
Romain Guy8aef54f2010-09-01 15:13:49 -0700241 /**
Romain Guy421458a2011-11-21 15:14:37 -0800242 * Target FBO used for rendering. Set to 0 when rendering directly
243 * into the framebuffer.
Romain Guyeb993562010-10-05 18:14:38 -0700244 */
245 GLuint fbo;
246
247 /**
Romain Guydbc26d22010-10-11 17:58:29 -0700248 * Indicates that this snapshot is invisible and nothing should be drawn
Romain Guyaf636eb2010-12-09 17:47:21 -0800249 * inside it. This flag is set only when the layer clips drawing to its
250 * bounds and is passed to subsequent snapshots.
Romain Guydbc26d22010-10-11 17:58:29 -0700251 */
252 bool invisible;
253
254 /**
Romain Guyaf636eb2010-12-09 17:47:21 -0800255 * If set to true, the layer will not be composited. This is similar to
256 * invisible but this flag is not passed to subsequent snapshots.
257 */
258 bool empty;
259
260 /**
Romain Guy8aef54f2010-09-01 15:13:49 -0700261 * Local transformation. Holds the current translation, scale and
262 * rotation values.
Romain Guyada4d532012-02-02 17:31:16 -0800263 *
264 * This is a reference to a matrix owned by this snapshot or another
265 * snapshot. This pointer must not be freed. See ::mTransformRoot.
Romain Guy8aef54f2010-09-01 15:13:49 -0700266 */
267 mat4* transform;
268
269 /**
Romain Guyf219da52011-01-16 12:54:25 -0800270 * The ancestor layer's dirty region.
Romain Guyada4d532012-02-02 17:31:16 -0800271 *
272 * This is a reference to a region owned by a layer. This pointer must
273 * not be freed.
Romain Guy5b3b3522010-10-27 18:57:51 -0700274 */
275 Region* region;
276
Chet Haasedb8c9a62012-03-21 18:54:18 -0700277 /**
278 * Current alpha value. This value is 1 by default, but may be set by a DisplayList which
279 * has translucent rendering in a non-overlapping View. This value will be used by
280 * the renderer to set the alpha in the current color being used for ensuing drawing
281 * operations. The value is inherited by child snapshots because the same value should
Rob Tsuk487a92c2015-01-06 13:22:54 -0800282 * be applied to descendants of the current DisplayList (for example, a TextView contains
Chet Haasedb8c9a62012-03-21 18:54:18 -0700283 * the base alpha value which should be applied to the child DisplayLists used for drawing
284 * the actual text).
285 */
286 float alpha;
287
Chris Craikdeeda3d2014-05-05 19:09:33 -0700288 /**
289 * Current clipping round rect.
290 *
291 * Points to data not owned by the snapshot, and may only be replaced by subsequent RR clips,
292 * never modified.
293 */
294 const RoundRectClipState* roundRectClipState;
295
Chris Craikfca52b752015-04-28 11:45:59 -0700296 /**
297 * Current projection masking path - used exclusively to mask tessellated circles.
298 */
299 const ProjectionPathMask* projectionPathMask;
300
Chris Craik5f803622013-03-21 14:39:04 -0700301 void dump() const;
302
Romain Guy5cbbce52010-06-27 22:59:20 -0700303private:
Chris Craika64a2be2014-05-14 14:17:01 -0700304 struct ViewportData {
Chris Craik92419752014-05-15 13:21:28 -0700305 ViewportData() : mWidth(0), mHeight(0) {}
Chris Craika64a2be2014-05-14 14:17:01 -0700306 void initialize(int width, int height) {
307 mWidth = width;
308 mHeight = height;
309 mOrthoMatrix.loadOrtho(0, width, height, 0, -1, 1);
310 }
311
312 /*
313 * Width and height of current viewport.
314 *
315 * The viewport is always defined to be (0, 0, width, height).
316 */
317 int mWidth;
318 int mHeight;
319 /**
320 * Contains the current orthographic, projection matrix.
321 */
322 mat4 mOrthoMatrix;
323 };
324
Romain Guy8aef54f2010-09-01 15:13:49 -0700325 mat4 mTransformRoot;
Romain Guy079ba2c2010-07-16 14:12:24 -0700326
Rob Tsuk487a92c2015-01-06 13:22:54 -0800327 ClipArea mClipAreaRoot;
328 ClipArea* mClipArea;
329 Rect mLocalClip;
330
Chris Craika64a2be2014-05-14 14:17:01 -0700331 ViewportData mViewportData;
Chris Craik69e5adf2014-08-14 13:34:01 -0700332 Vector3 mRelativeLightCenter;
Romain Guy967e2bf2012-02-07 17:04:34 -0800333
Romain Guy5cbbce52010-06-27 22:59:20 -0700334}; // class Snapshot
335
336}; // namespace uirenderer
337}; // namespace android
338
Romain Guy5b3b3522010-10-27 18:57:51 -0700339#endif // ANDROID_HWUI_SNAPSHOT_H