blob: d26ee3884433f2d32440f3d63ff6ab313553683e [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
Chris Craik5f803622013-03-21 14:39:04 -070017#define LOG_TAG "OpenGLRenderer"
18
Romain Guyada4d532012-02-02 17:31:16 -080019#include "Snapshot.h"
20
21#include <SkCanvas.h>
22
23namespace android {
24namespace uirenderer {
25
26///////////////////////////////////////////////////////////////////////////////
27// Constructors
28///////////////////////////////////////////////////////////////////////////////
29
30Snapshot::Snapshot(): flags(0), previous(NULL), layer(NULL), fbo(0),
Chet Haasedb8c9a62012-03-21 18:54:18 -070031 invisible(false), empty(false), alpha(1.0f) {
Romain Guyada4d532012-02-02 17:31:16 -080032
33 transform = &mTransformRoot;
34 clipRect = &mClipRectRoot;
35 region = NULL;
Romain Guy8ce00302013-01-15 18:51:42 -080036 clipRegion = &mClipRegionRoot;
Romain Guyada4d532012-02-02 17:31:16 -080037}
38
39/**
40 * Copies the specified snapshot/ The specified snapshot is stored as
41 * the previous snapshot.
42 */
43Snapshot::Snapshot(const sp<Snapshot>& s, int saveFlags):
Romain Guy8ce00302013-01-15 18:51:42 -080044 flags(0), previous(s), layer(s->layer), fbo(s->fbo),
Romain Guyada4d532012-02-02 17:31:16 -080045 invisible(s->invisible), empty(false),
Chet Haasedb8c9a62012-03-21 18:54:18 -070046 viewport(s->viewport), height(s->height), alpha(s->alpha) {
Romain Guyada4d532012-02-02 17:31:16 -080047
48 if (saveFlags & SkCanvas::kMatrix_SaveFlag) {
49 mTransformRoot.load(*s->transform);
50 transform = &mTransformRoot;
51 } else {
52 transform = s->transform;
53 }
54
55 if (saveFlags & SkCanvas::kClip_SaveFlag) {
56 mClipRectRoot.set(*s->clipRect);
57 clipRect = &mClipRectRoot;
Romain Guy8ce00302013-01-15 18:51:42 -080058 if (!s->clipRegion->isEmpty()) {
Romain Guy0baaac52012-08-31 20:31:01 -070059 mClipRegionRoot.op(*s->clipRegion, SkRegion::kUnion_Op);
Romain Guy967e2bf2012-02-07 17:04:34 -080060 }
Romain Guy8ce00302013-01-15 18:51:42 -080061 clipRegion = &mClipRegionRoot;
Romain Guyada4d532012-02-02 17:31:16 -080062 } else {
63 clipRect = s->clipRect;
Romain Guy967e2bf2012-02-07 17:04:34 -080064 clipRegion = s->clipRegion;
Romain Guyada4d532012-02-02 17:31:16 -080065 }
66
67 if (s->flags & Snapshot::kFlagFboTarget) {
68 flags |= Snapshot::kFlagFboTarget;
69 region = s->region;
70 } else {
71 region = NULL;
72 }
73}
74
75///////////////////////////////////////////////////////////////////////////////
76// Clipping
77///////////////////////////////////////////////////////////////////////////////
78
Romain Guy967e2bf2012-02-07 17:04:34 -080079void Snapshot::ensureClipRegion() {
Romain Guy8ce00302013-01-15 18:51:42 -080080 if (clipRegion->isEmpty()) {
Romain Guy0baaac52012-08-31 20:31:01 -070081 clipRegion->setRect(clipRect->left, clipRect->top, clipRect->right, clipRect->bottom);
Romain Guy967e2bf2012-02-07 17:04:34 -080082 }
Romain Guy967e2bf2012-02-07 17:04:34 -080083}
84
85void Snapshot::copyClipRectFromRegion() {
Romain Guy967e2bf2012-02-07 17:04:34 -080086 if (!clipRegion->isEmpty()) {
Romain Guy0baaac52012-08-31 20:31:01 -070087 const SkIRect& bounds = clipRegion->getBounds();
88 clipRect->set(bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom);
Romain Guy967e2bf2012-02-07 17:04:34 -080089
90 if (clipRegion->isRect()) {
Romain Guy0baaac52012-08-31 20:31:01 -070091 clipRegion->setEmpty();
Romain Guy967e2bf2012-02-07 17:04:34 -080092 }
93 } else {
94 clipRect->setEmpty();
Romain Guy967e2bf2012-02-07 17:04:34 -080095 }
Romain Guy967e2bf2012-02-07 17:04:34 -080096}
97
Romain Guy0baaac52012-08-31 20:31:01 -070098bool Snapshot::clipRegionOp(float left, float top, float right, float bottom, SkRegion::Op op) {
Romain Guy0baaac52012-08-31 20:31:01 -070099 SkIRect tmp;
100 tmp.set(left, top, right, bottom);
101 clipRegion->op(tmp, op);
Romain Guy967e2bf2012-02-07 17:04:34 -0800102 copyClipRectFromRegion();
103 return true;
Romain Guy8ce00302013-01-15 18:51:42 -0800104}
105
106bool Snapshot::clipRegionTransformed(const SkRegion& region, SkRegion::Op op) {
107 ensureClipRegion();
108 clipRegion->op(region, op);
109 copyClipRectFromRegion();
110 flags |= Snapshot::kFlagClipSet;
111 return true;
Romain Guy967e2bf2012-02-07 17:04:34 -0800112}
113
Romain Guyada4d532012-02-02 17:31:16 -0800114bool Snapshot::clip(float left, float top, float right, float bottom, SkRegion::Op op) {
115 Rect r(left, top, right, bottom);
116 transform->mapRect(r);
117 return clipTransformed(r, op);
118}
119
120bool Snapshot::clipTransformed(const Rect& r, SkRegion::Op op) {
121 bool clipped = false;
122
Romain Guyada4d532012-02-02 17:31:16 -0800123 switch (op) {
Romain Guy967e2bf2012-02-07 17:04:34 -0800124 case SkRegion::kIntersect_Op: {
Romain Guy8ce00302013-01-15 18:51:42 -0800125 if (CC_UNLIKELY(!clipRegion->isEmpty())) {
Romain Guy735738c2012-12-03 12:34:51 -0800126 ensureClipRegion();
Romain Guy0baaac52012-08-31 20:31:01 -0700127 clipped = clipRegionOp(r.left, r.top, r.right, r.bottom, SkRegion::kIntersect_Op);
Romain Guy967e2bf2012-02-07 17:04:34 -0800128 } else {
129 clipped = clipRect->intersect(r);
130 if (!clipped) {
131 clipRect->setEmpty();
132 clipped = true;
133 }
Romain Guyada4d532012-02-02 17:31:16 -0800134 }
135 break;
Romain Guy967e2bf2012-02-07 17:04:34 -0800136 }
Romain Guy967e2bf2012-02-07 17:04:34 -0800137 case SkRegion::kReplace_Op: {
138 setClip(r.left, r.top, r.right, r.bottom);
Romain Guyada4d532012-02-02 17:31:16 -0800139 clipped = true;
140 break;
Romain Guy967e2bf2012-02-07 17:04:34 -0800141 }
Romain Guy0baaac52012-08-31 20:31:01 -0700142 default: {
143 ensureClipRegion();
144 clipped = clipRegionOp(r.left, r.top, r.right, r.bottom, op);
145 break;
146 }
Romain Guyada4d532012-02-02 17:31:16 -0800147 }
148
149 if (clipped) {
150 flags |= Snapshot::kFlagClipSet;
151 }
152
153 return clipped;
154}
155
156void Snapshot::setClip(float left, float top, float right, float bottom) {
157 clipRect->set(left, top, right, bottom);
Romain Guy8ce00302013-01-15 18:51:42 -0800158 if (!clipRegion->isEmpty()) {
Romain Guy0baaac52012-08-31 20:31:01 -0700159 clipRegion->setEmpty();
Romain Guy967e2bf2012-02-07 17:04:34 -0800160 }
Romain Guyada4d532012-02-02 17:31:16 -0800161 flags |= Snapshot::kFlagClipSet;
162}
163
Romain Guya3dc55f2012-09-28 13:55:44 -0700164bool Snapshot::hasPerspectiveTransform() const {
165 return transform->isPerspective();
166}
167
Romain Guyada4d532012-02-02 17:31:16 -0800168const Rect& Snapshot::getLocalClip() {
169 mat4 inverse;
170 inverse.loadInverse(*transform);
171
172 mLocalClip.set(*clipRect);
173 inverse.mapRect(mLocalClip);
174
175 return mLocalClip;
176}
177
178void Snapshot::resetClip(float left, float top, float right, float bottom) {
Romain Guy3bbacf22013-02-06 16:51:04 -0800179 // TODO: This is incorrect, when we start rendering into a new layer,
180 // we may have to modify the previous snapshot's clip rect and clip
181 // region if the previous restore() call did not restore the clip
Romain Guyada4d532012-02-02 17:31:16 -0800182 clipRect = &mClipRectRoot;
Romain Guy3c099c42013-02-06 15:28:04 -0800183 clipRegion = &mClipRegionRoot;
Romain Guy967e2bf2012-02-07 17:04:34 -0800184 setClip(left, top, right, bottom);
Romain Guyada4d532012-02-02 17:31:16 -0800185}
186
187///////////////////////////////////////////////////////////////////////////////
188// Transforms
189///////////////////////////////////////////////////////////////////////////////
190
191void Snapshot::resetTransform(float x, float y, float z) {
192 transform = &mTransformRoot;
193 transform->loadTranslate(x, y, z);
194}
195
196///////////////////////////////////////////////////////////////////////////////
197// Queries
198///////////////////////////////////////////////////////////////////////////////
199
200bool Snapshot::isIgnored() const {
201 return invisible || empty;
202}
203
Chris Craik5f803622013-03-21 14:39:04 -0700204void Snapshot::dump() const {
205 ALOGD("Snapshot %p, flags %x, prev %p, height %d, ignored %d, hasComplexClip %d",
206 this, flags, previous.get(), height, isIgnored(), clipRegion && !clipRegion->isEmpty());
207 ALOGD(" ClipRect (at %p) %.1f %.1f %.1f %.1f",
208 clipRect, clipRect->left, clipRect->top, clipRect->right, clipRect->bottom);
209 ALOGD(" Transform (at %p):", transform);
210 transform->dump();
211}
212
Romain Guyada4d532012-02-02 17:31:16 -0800213}; // namespace uirenderer
214}; // namespace android