Romain Guy | ada4d53 | 2012-02-02 17:31:16 -0800 | [diff] [blame] | 1 | /* |
| 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 | |
| 19 | #include <SkCanvas.h> |
| 20 | |
| 21 | namespace android { |
| 22 | namespace uirenderer { |
| 23 | |
| 24 | /////////////////////////////////////////////////////////////////////////////// |
| 25 | // Constructors |
| 26 | /////////////////////////////////////////////////////////////////////////////// |
| 27 | |
| 28 | Snapshot::Snapshot(): flags(0), previous(NULL), layer(NULL), fbo(0), |
Chet Haase | db8c9a6 | 2012-03-21 18:54:18 -0700 | [diff] [blame] | 29 | invisible(false), empty(false), alpha(1.0f) { |
Romain Guy | ada4d53 | 2012-02-02 17:31:16 -0800 | [diff] [blame] | 30 | |
| 31 | transform = &mTransformRoot; |
| 32 | clipRect = &mClipRectRoot; |
| 33 | region = NULL; |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 34 | clipRegion = &mClipRegionRoot; |
Romain Guy | ada4d53 | 2012-02-02 17:31:16 -0800 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | /** |
| 38 | * Copies the specified snapshot/ The specified snapshot is stored as |
| 39 | * the previous snapshot. |
| 40 | */ |
| 41 | Snapshot::Snapshot(const sp<Snapshot>& s, int saveFlags): |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 42 | flags(0), previous(s), layer(s->layer), fbo(s->fbo), |
Romain Guy | ada4d53 | 2012-02-02 17:31:16 -0800 | [diff] [blame] | 43 | invisible(s->invisible), empty(false), |
Chet Haase | db8c9a6 | 2012-03-21 18:54:18 -0700 | [diff] [blame] | 44 | viewport(s->viewport), height(s->height), alpha(s->alpha) { |
Romain Guy | ada4d53 | 2012-02-02 17:31:16 -0800 | [diff] [blame] | 45 | |
| 46 | if (saveFlags & SkCanvas::kMatrix_SaveFlag) { |
| 47 | mTransformRoot.load(*s->transform); |
| 48 | transform = &mTransformRoot; |
| 49 | } else { |
| 50 | transform = s->transform; |
| 51 | } |
| 52 | |
| 53 | if (saveFlags & SkCanvas::kClip_SaveFlag) { |
| 54 | mClipRectRoot.set(*s->clipRect); |
| 55 | clipRect = &mClipRectRoot; |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 56 | if (!s->clipRegion->isEmpty()) { |
Romain Guy | 0baaac5 | 2012-08-31 20:31:01 -0700 | [diff] [blame] | 57 | mClipRegionRoot.op(*s->clipRegion, SkRegion::kUnion_Op); |
Romain Guy | 967e2bf | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 58 | } |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 59 | clipRegion = &mClipRegionRoot; |
Romain Guy | ada4d53 | 2012-02-02 17:31:16 -0800 | [diff] [blame] | 60 | } else { |
| 61 | clipRect = s->clipRect; |
Romain Guy | 967e2bf | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 62 | clipRegion = s->clipRegion; |
Romain Guy | ada4d53 | 2012-02-02 17:31:16 -0800 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | if (s->flags & Snapshot::kFlagFboTarget) { |
| 66 | flags |= Snapshot::kFlagFboTarget; |
| 67 | region = s->region; |
| 68 | } else { |
| 69 | region = NULL; |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | /////////////////////////////////////////////////////////////////////////////// |
| 74 | // Clipping |
| 75 | /////////////////////////////////////////////////////////////////////////////// |
| 76 | |
Romain Guy | 967e2bf | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 77 | void Snapshot::ensureClipRegion() { |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 78 | if (clipRegion->isEmpty()) { |
Romain Guy | 0baaac5 | 2012-08-31 20:31:01 -0700 | [diff] [blame] | 79 | clipRegion->setRect(clipRect->left, clipRect->top, clipRect->right, clipRect->bottom); |
Romain Guy | 967e2bf | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 80 | } |
Romain Guy | 967e2bf | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | void Snapshot::copyClipRectFromRegion() { |
Romain Guy | 967e2bf | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 84 | if (!clipRegion->isEmpty()) { |
Romain Guy | 0baaac5 | 2012-08-31 20:31:01 -0700 | [diff] [blame] | 85 | const SkIRect& bounds = clipRegion->getBounds(); |
| 86 | clipRect->set(bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom); |
Romain Guy | 967e2bf | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 87 | |
| 88 | if (clipRegion->isRect()) { |
Romain Guy | 0baaac5 | 2012-08-31 20:31:01 -0700 | [diff] [blame] | 89 | clipRegion->setEmpty(); |
Romain Guy | 967e2bf | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 90 | } |
| 91 | } else { |
| 92 | clipRect->setEmpty(); |
Romain Guy | 967e2bf | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 93 | } |
Romain Guy | 967e2bf | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 94 | } |
| 95 | |
Romain Guy | 0baaac5 | 2012-08-31 20:31:01 -0700 | [diff] [blame] | 96 | bool Snapshot::clipRegionOp(float left, float top, float right, float bottom, SkRegion::Op op) { |
Romain Guy | 0baaac5 | 2012-08-31 20:31:01 -0700 | [diff] [blame] | 97 | SkIRect tmp; |
| 98 | tmp.set(left, top, right, bottom); |
| 99 | clipRegion->op(tmp, op); |
Romain Guy | 967e2bf | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 100 | copyClipRectFromRegion(); |
| 101 | return true; |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | bool Snapshot::clipRegionTransformed(const SkRegion& region, SkRegion::Op op) { |
| 105 | ensureClipRegion(); |
| 106 | clipRegion->op(region, op); |
| 107 | copyClipRectFromRegion(); |
| 108 | flags |= Snapshot::kFlagClipSet; |
| 109 | return true; |
Romain Guy | 967e2bf | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 110 | } |
| 111 | |
Romain Guy | ada4d53 | 2012-02-02 17:31:16 -0800 | [diff] [blame] | 112 | bool Snapshot::clip(float left, float top, float right, float bottom, SkRegion::Op op) { |
| 113 | Rect r(left, top, right, bottom); |
| 114 | transform->mapRect(r); |
| 115 | return clipTransformed(r, op); |
| 116 | } |
| 117 | |
| 118 | bool Snapshot::clipTransformed(const Rect& r, SkRegion::Op op) { |
| 119 | bool clipped = false; |
| 120 | |
Romain Guy | ada4d53 | 2012-02-02 17:31:16 -0800 | [diff] [blame] | 121 | switch (op) { |
Romain Guy | 967e2bf | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 122 | case SkRegion::kIntersect_Op: { |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 123 | if (CC_UNLIKELY(!clipRegion->isEmpty())) { |
Romain Guy | 735738c | 2012-12-03 12:34:51 -0800 | [diff] [blame] | 124 | ensureClipRegion(); |
Romain Guy | 0baaac5 | 2012-08-31 20:31:01 -0700 | [diff] [blame] | 125 | clipped = clipRegionOp(r.left, r.top, r.right, r.bottom, SkRegion::kIntersect_Op); |
Romain Guy | 967e2bf | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 126 | } else { |
| 127 | clipped = clipRect->intersect(r); |
| 128 | if (!clipped) { |
| 129 | clipRect->setEmpty(); |
| 130 | clipped = true; |
| 131 | } |
Romain Guy | ada4d53 | 2012-02-02 17:31:16 -0800 | [diff] [blame] | 132 | } |
| 133 | break; |
Romain Guy | 967e2bf | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 134 | } |
Romain Guy | 967e2bf | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 135 | case SkRegion::kReplace_Op: { |
| 136 | setClip(r.left, r.top, r.right, r.bottom); |
Romain Guy | ada4d53 | 2012-02-02 17:31:16 -0800 | [diff] [blame] | 137 | clipped = true; |
| 138 | break; |
Romain Guy | 967e2bf | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 139 | } |
Romain Guy | 0baaac5 | 2012-08-31 20:31:01 -0700 | [diff] [blame] | 140 | default: { |
| 141 | ensureClipRegion(); |
| 142 | clipped = clipRegionOp(r.left, r.top, r.right, r.bottom, op); |
| 143 | break; |
| 144 | } |
Romain Guy | ada4d53 | 2012-02-02 17:31:16 -0800 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | if (clipped) { |
| 148 | flags |= Snapshot::kFlagClipSet; |
| 149 | } |
| 150 | |
| 151 | return clipped; |
| 152 | } |
| 153 | |
| 154 | void Snapshot::setClip(float left, float top, float right, float bottom) { |
| 155 | clipRect->set(left, top, right, bottom); |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 156 | if (!clipRegion->isEmpty()) { |
Romain Guy | 0baaac5 | 2012-08-31 20:31:01 -0700 | [diff] [blame] | 157 | clipRegion->setEmpty(); |
Romain Guy | 967e2bf | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 158 | } |
Romain Guy | ada4d53 | 2012-02-02 17:31:16 -0800 | [diff] [blame] | 159 | flags |= Snapshot::kFlagClipSet; |
| 160 | } |
| 161 | |
Romain Guy | a3dc55f | 2012-09-28 13:55:44 -0700 | [diff] [blame] | 162 | bool Snapshot::hasPerspectiveTransform() const { |
| 163 | return transform->isPerspective(); |
| 164 | } |
| 165 | |
Romain Guy | ada4d53 | 2012-02-02 17:31:16 -0800 | [diff] [blame] | 166 | const Rect& Snapshot::getLocalClip() { |
| 167 | mat4 inverse; |
| 168 | inverse.loadInverse(*transform); |
| 169 | |
| 170 | mLocalClip.set(*clipRect); |
| 171 | inverse.mapRect(mLocalClip); |
| 172 | |
| 173 | return mLocalClip; |
| 174 | } |
| 175 | |
| 176 | void Snapshot::resetClip(float left, float top, float right, float bottom) { |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 177 | // TODO: This is incorrect, when we start rendering into a new layer, |
| 178 | // we may have to modify the previous snapshot's clip rect and clip |
| 179 | // region if the previous restore() call did not restore the clip |
Romain Guy | ada4d53 | 2012-02-02 17:31:16 -0800 | [diff] [blame] | 180 | clipRect = &mClipRectRoot; |
Romain Guy | 3c099c4 | 2013-02-06 15:28:04 -0800 | [diff] [blame] | 181 | clipRegion = &mClipRegionRoot; |
Romain Guy | 967e2bf | 2012-02-07 17:04:34 -0800 | [diff] [blame] | 182 | setClip(left, top, right, bottom); |
Romain Guy | ada4d53 | 2012-02-02 17:31:16 -0800 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | /////////////////////////////////////////////////////////////////////////////// |
| 186 | // Transforms |
| 187 | /////////////////////////////////////////////////////////////////////////////// |
| 188 | |
| 189 | void Snapshot::resetTransform(float x, float y, float z) { |
| 190 | transform = &mTransformRoot; |
| 191 | transform->loadTranslate(x, y, z); |
| 192 | } |
| 193 | |
| 194 | /////////////////////////////////////////////////////////////////////////////// |
| 195 | // Queries |
| 196 | /////////////////////////////////////////////////////////////////////////////// |
| 197 | |
| 198 | bool Snapshot::isIgnored() const { |
| 199 | return invisible || empty; |
| 200 | } |
| 201 | |
| 202 | }; // namespace uirenderer |
| 203 | }; // namespace android |