blob: 2c9c9d90f6865e4eabccb0b60ae1ce99f45428b7 [file] [log] [blame]
Romain Guyada4d532012-02-02 17:31:16 -08001/*
2 * Copyright (C) 2012 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
17#include "Snapshot.h"
18
sergeyvdccca442016-03-21 15:38:21 -070019#include "hwui/Canvas.h"
Romain Guyada4d532012-02-02 17:31:16 -080020
21namespace android {
22namespace uirenderer {
23
24///////////////////////////////////////////////////////////////////////////////
25// Constructors
26///////////////////////////////////////////////////////////////////////////////
27
Chris Craike4aa95e2014-05-08 13:57:05 -070028Snapshot::Snapshot()
29 : flags(0)
Chris Craikd41c4d82015-01-05 15:51:13 -080030 , previous(nullptr)
31 , layer(nullptr)
Chris Craike4aa95e2014-05-08 13:57:05 -070032 , fbo(0)
33 , invisible(false)
34 , empty(false)
Chris Craikdeeda3d2014-05-05 19:09:33 -070035 , alpha(1.0f)
Rob Tsuk487a92c2015-01-06 13:22:54 -080036 , roundRectClipState(nullptr)
Chris Craikfca52b752015-04-28 11:45:59 -070037 , projectionPathMask(nullptr)
Rob Tsuk487a92c2015-01-06 13:22:54 -080038 , mClipArea(&mClipAreaRoot) {
Romain Guyada4d532012-02-02 17:31:16 -080039 transform = &mTransformRoot;
Chris Craikd41c4d82015-01-05 15:51:13 -080040 region = nullptr;
Romain Guyada4d532012-02-02 17:31:16 -080041}
42
43/**
44 * Copies the specified snapshot/ The specified snapshot is stored as
45 * the previous snapshot.
46 */
John Reckd9ee5502015-10-06 10:06:37 -070047Snapshot::Snapshot(Snapshot* s, int saveFlags)
Chris Craike4aa95e2014-05-08 13:57:05 -070048 : flags(0)
49 , previous(s)
50 , layer(s->layer)
51 , fbo(s->fbo)
52 , invisible(s->invisible)
53 , empty(false)
Chris Craika64a2be2014-05-14 14:17:01 -070054 , alpha(s->alpha)
Chris Craikdeeda3d2014-05-05 19:09:33 -070055 , roundRectClipState(s->roundRectClipState)
Chris Craikfca52b752015-04-28 11:45:59 -070056 , projectionPathMask(s->projectionPathMask)
Rob Tsuk487a92c2015-01-06 13:22:54 -080057 , mClipArea(nullptr)
Chris Craik69e5adf2014-08-14 13:34:01 -070058 , mViewportData(s->mViewportData)
59 , mRelativeLightCenter(s->mRelativeLightCenter) {
Florin Malitaeecff562015-12-21 10:43:01 -050060 if (saveFlags & SaveFlags::Matrix) {
Chris Craik7c85c542015-08-19 15:10:24 -070061 mTransformRoot = *s->transform;
Romain Guyada4d532012-02-02 17:31:16 -080062 transform = &mTransformRoot;
63 } else {
64 transform = s->transform;
65 }
66
Florin Malitaeecff562015-12-21 10:43:01 -050067 if (saveFlags & SaveFlags::Clip) {
Rob Tsuk487a92c2015-01-06 13:22:54 -080068 mClipAreaRoot = s->getClipArea();
69 mClipArea = &mClipAreaRoot;
Romain Guyada4d532012-02-02 17:31:16 -080070 } else {
Rob Tsuk487a92c2015-01-06 13:22:54 -080071 mClipArea = s->mClipArea;
Romain Guyada4d532012-02-02 17:31:16 -080072 }
73
74 if (s->flags & Snapshot::kFlagFboTarget) {
75 flags |= Snapshot::kFlagFboTarget;
76 region = s->region;
77 } else {
Chris Craikd41c4d82015-01-05 15:51:13 -080078 region = nullptr;
Romain Guyada4d532012-02-02 17:31:16 -080079 }
80}
81
82///////////////////////////////////////////////////////////////////////////////
83// Clipping
84///////////////////////////////////////////////////////////////////////////////
85
Chris Craik4d3e7042015-08-20 12:54:25 -070086void Snapshot::clipRegionTransformed(const SkRegion& region, SkRegion::Op op) {
Romain Guy8ce00302013-01-15 18:51:42 -080087 flags |= Snapshot::kFlagClipSet;
Chris Craik4d3e7042015-08-20 12:54:25 -070088 mClipArea->clipRegion(region, op);
Romain Guy967e2bf2012-02-07 17:04:34 -080089}
90
Chris Craika2a70722015-12-17 12:58:24 -080091void Snapshot::clip(const Rect& localClip, SkRegion::Op op) {
Rob Tsuk487a92c2015-01-06 13:22:54 -080092 flags |= Snapshot::kFlagClipSet;
Chris Craika2a70722015-12-17 12:58:24 -080093 mClipArea->clipRectWithTransform(localClip, transform, op);
Romain Guyada4d532012-02-02 17:31:16 -080094}
95
Chris Craik4d3e7042015-08-20 12:54:25 -070096void Snapshot::clipPath(const SkPath& path, SkRegion::Op op) {
Rob Tsuk487a92c2015-01-06 13:22:54 -080097 flags |= Snapshot::kFlagClipSet;
Chris Craik4d3e7042015-08-20 12:54:25 -070098 mClipArea->clipPathWithTransform(path, transform, op);
Romain Guyada4d532012-02-02 17:31:16 -080099}
100
101void Snapshot::setClip(float left, float top, float right, float bottom) {
Romain Guyada4d532012-02-02 17:31:16 -0800102 flags |= Snapshot::kFlagClipSet;
Chris Craik4d3e7042015-08-20 12:54:25 -0700103 mClipArea->setClip(left, top, right, bottom);
Romain Guyada4d532012-02-02 17:31:16 -0800104}
105
Romain Guya3dc55f2012-09-28 13:55:44 -0700106bool Snapshot::hasPerspectiveTransform() const {
107 return transform->isPerspective();
108}
109
Romain Guyada4d532012-02-02 17:31:16 -0800110const Rect& Snapshot::getLocalClip() {
111 mat4 inverse;
112 inverse.loadInverse(*transform);
113
Rob Tsuk487a92c2015-01-06 13:22:54 -0800114 mLocalClip.set(mClipArea->getClipRect());
Romain Guyada4d532012-02-02 17:31:16 -0800115 inverse.mapRect(mLocalClip);
116
117 return mLocalClip;
118}
119
120void Snapshot::resetClip(float left, float top, float right, float bottom) {
Romain Guy3bbacf22013-02-06 16:51:04 -0800121 // TODO: This is incorrect, when we start rendering into a new layer,
122 // we may have to modify the previous snapshot's clip rect and clip
123 // region if the previous restore() call did not restore the clip
Rob Tsuk487a92c2015-01-06 13:22:54 -0800124 mClipArea = &mClipAreaRoot;
Romain Guy967e2bf2012-02-07 17:04:34 -0800125 setClip(left, top, right, bottom);
Romain Guyada4d532012-02-02 17:31:16 -0800126}
127
128///////////////////////////////////////////////////////////////////////////////
129// Transforms
130///////////////////////////////////////////////////////////////////////////////
131
132void Snapshot::resetTransform(float x, float y, float z) {
Chris Craik98787e62015-11-13 10:55:30 -0800133#if HWUI_NEW_OPS
134 LOG_ALWAYS_FATAL("not supported - light center managed differently");
135#else
Chris Craik69e5adf2014-08-14 13:34:01 -0700136 // before resetting, map current light pos with inverse of current transform
137 Vector3 center = mRelativeLightCenter;
138 mat4 inverse;
139 inverse.loadInverse(*transform);
140 inverse.mapPoint3d(center);
141 mRelativeLightCenter = center;
142
Romain Guyada4d532012-02-02 17:31:16 -0800143 transform = &mTransformRoot;
144 transform->loadTranslate(x, y, z);
Chris Craik98787e62015-11-13 10:55:30 -0800145#endif
Romain Guyada4d532012-02-02 17:31:16 -0800146}
147
Chris Craikfca52b752015-04-28 11:45:59 -0700148void Snapshot::buildScreenSpaceTransform(Matrix4* outTransform) const {
Chris Craik678ff812016-03-01 13:27:54 -0800149#if HWUI_NEW_OPS
150 LOG_ALWAYS_FATAL("not supported - not needed by new ops");
151#else
Chris Craikfca52b752015-04-28 11:45:59 -0700152 // build (reverse ordered) list of the stack of snapshots, terminated with a NULL
153 Vector<const Snapshot*> snapshotList;
154 snapshotList.push(nullptr);
155 const Snapshot* current = this;
156 do {
157 snapshotList.push(current);
John Reckd9ee5502015-10-06 10:06:37 -0700158 current = current->previous;
Chris Craikfca52b752015-04-28 11:45:59 -0700159 } while (current);
160
161 // traverse the list, adding in each transform that contributes to the total transform
162 outTransform->loadIdentity();
163 for (size_t i = snapshotList.size() - 1; i > 0; i--) {
164 // iterate down the stack
165 const Snapshot* current = snapshotList[i];
166 const Snapshot* next = snapshotList[i - 1];
167 if (current->flags & kFlagIsFboLayer) {
168 // if we've hit a layer, translate by the layer's draw offset
169 outTransform->translate(current->layer->layer.left, current->layer->layer.top);
170 }
171 if (!next || (next->flags & kFlagIsFboLayer)) {
172 // if this snapshot is last, or if this snapshot is last before an
173 // FBO layer (which reset the transform), apply it
174 outTransform->multiply(*(current->transform));
175 }
176 }
Chris Craik678ff812016-03-01 13:27:54 -0800177#endif
Chris Craikfca52b752015-04-28 11:45:59 -0700178}
179
Romain Guyada4d532012-02-02 17:31:16 -0800180///////////////////////////////////////////////////////////////////////////////
Chris Craikaf4d04c2014-07-29 12:50:14 -0700181// Clipping round rect
Chris Craikdeeda3d2014-05-05 19:09:33 -0700182///////////////////////////////////////////////////////////////////////////////
183
Chris Craike83cbd42014-09-03 17:52:24 -0700184void Snapshot::setClippingRoundRect(LinearAllocator& allocator, const Rect& bounds,
185 float radius, bool highPriority) {
Chris Craikaf4d04c2014-07-29 12:50:14 -0700186 if (bounds.isEmpty()) {
Rob Tsuk487a92c2015-01-06 13:22:54 -0800187 mClipArea->setEmpty();
Chris Craikaf4d04c2014-07-29 12:50:14 -0700188 return;
189 }
Chris Craikdeeda3d2014-05-05 19:09:33 -0700190
Chris Craike83cbd42014-09-03 17:52:24 -0700191 if (roundRectClipState && roundRectClipState->highPriority) {
192 // ignore, don't replace, already have a high priority clip
193 return;
194 }
195
Chris Craikdeeda3d2014-05-05 19:09:33 -0700196 RoundRectClipState* state = new (allocator) RoundRectClipState;
197
Chris Craike83cbd42014-09-03 17:52:24 -0700198 state->highPriority = highPriority;
199
Chris Craikdeeda3d2014-05-05 19:09:33 -0700200 // store the inverse drawing matrix
Chris Craik7c85c542015-08-19 15:10:24 -0700201 Matrix4 roundRectDrawingMatrix = getOrthoMatrix();
Chris Craikaf4d04c2014-07-29 12:50:14 -0700202 roundRectDrawingMatrix.multiply(*transform);
203 state->matrix.loadInverse(roundRectDrawingMatrix);
Chris Craikdeeda3d2014-05-05 19:09:33 -0700204
205 // compute area under rounded corners - only draws overlapping these rects need to be clipped
206 for (int i = 0 ; i < 4; i++) {
207 state->dangerRects[i] = bounds;
208 }
209 state->dangerRects[0].bottom = state->dangerRects[1].bottom = bounds.top + radius;
210 state->dangerRects[0].right = state->dangerRects[2].right = bounds.left + radius;
211 state->dangerRects[1].left = state->dangerRects[3].left = bounds.right - radius;
212 state->dangerRects[2].top = state->dangerRects[3].top = bounds.bottom - radius;
213 for (int i = 0; i < 4; i++) {
214 transform->mapRect(state->dangerRects[i]);
215
216 // round danger rects out as though they are AA geometry (since they essentially are)
217 state->dangerRects[i].snapGeometryToPixelBoundaries(true);
218 }
219
220 // store RR area
Chris Craikaf4d04c2014-07-29 12:50:14 -0700221 state->innerRect = bounds;
222 state->innerRect.inset(radius);
223 state->radius = radius;
Chris Craikdeeda3d2014-05-05 19:09:33 -0700224
225 // store as immutable so, for this frame, pointer uniquely identifies this bundle of shader info
226 roundRectClipState = state;
227}
228
Chris Craikfca52b752015-04-28 11:45:59 -0700229void Snapshot::setProjectionPathMask(LinearAllocator& allocator, const SkPath* path) {
Chris Craik678ff812016-03-01 13:27:54 -0800230#if HWUI_NEW_OPS
231 // TODO: remove allocator param for HWUI_NEW_OPS
232 projectionPathMask = path;
233#else
Chris Craikfca52b752015-04-28 11:45:59 -0700234 if (path) {
235 ProjectionPathMask* mask = new (allocator) ProjectionPathMask;
236 mask->projectionMask = path;
237 buildScreenSpaceTransform(&(mask->projectionMaskTransform));
Chris Craikfca52b752015-04-28 11:45:59 -0700238 projectionPathMask = mask;
239 } else {
240 projectionPathMask = nullptr;
241 }
Chris Craik678ff812016-03-01 13:27:54 -0800242#endif
Chris Craikfca52b752015-04-28 11:45:59 -0700243}
244
Chris Craik04d46eb2016-04-07 13:51:07 -0700245static Snapshot* getClipRoot(Snapshot* target) {
246 while (target->previous && target->previous->previous) {
247 target = target->previous;
248 }
249 return target;
250}
251
252const ClipBase* Snapshot::serializeIntersectedClip(LinearAllocator& allocator,
253 const ClipBase* recordedClip, const Matrix4& recordedClipTransform) {
254 auto target = this;
255 if (CC_UNLIKELY(recordedClip && recordedClip->intersectWithRoot)) {
256 // Clip must be intersected with root, instead of current clip.
257 target = getClipRoot(this);
258 }
259
260 return target->mClipArea->serializeIntersectedClip(allocator,
261 recordedClip, recordedClipTransform);
262}
263
264void Snapshot::applyClip(const ClipBase* recordedClip, const Matrix4& transform) {
265 if (CC_UNLIKELY(recordedClip && recordedClip->intersectWithRoot)) {
266 // current clip is being replaced, but must intersect with clip root
267 *mClipArea = *(getClipRoot(this)->mClipArea);
268 }
269 mClipArea->applyClip(recordedClip, transform);
270}
271
Chris Craikdeeda3d2014-05-05 19:09:33 -0700272///////////////////////////////////////////////////////////////////////////////
Romain Guyada4d532012-02-02 17:31:16 -0800273// Queries
274///////////////////////////////////////////////////////////////////////////////
275
276bool Snapshot::isIgnored() const {
277 return invisible || empty;
278}
279
Chris Craik5f803622013-03-21 14:39:04 -0700280void Snapshot::dump() const {
281 ALOGD("Snapshot %p, flags %x, prev %p, height %d, ignored %d, hasComplexClip %d",
John Reckd9ee5502015-10-06 10:06:37 -0700282 this, flags, previous, getViewportHeight(), isIgnored(), !mClipArea->isSimple());
Rob Tsuk487a92c2015-01-06 13:22:54 -0800283 const Rect& clipRect(mClipArea->getClipRect());
Chris Craike9c01a42015-04-06 10:47:23 -0700284 ALOGD(" ClipRect %.1f %.1f %.1f %.1f, clip simple %d",
285 clipRect.left, clipRect.top, clipRect.right, clipRect.bottom, mClipArea->isSimple());
286
Chris Craik5f803622013-03-21 14:39:04 -0700287 ALOGD(" Transform (at %p):", transform);
288 transform->dump();
289}
290
Romain Guyada4d532012-02-02 17:31:16 -0800291}; // namespace uirenderer
292}; // namespace android