blob: 342e5b157f6876dcc07eca729e6de359f2a54d98 [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
17#ifndef ANDROID_UI_SNAPSHOT_H
18#define ANDROID_UI_SNAPSHOT_H
19
20#include <GLES2/gl2.h>
21#include <GLES2/gl2ext.h>
22
23#include <utils/RefBase.h>
24
Romain Guy079ba2c2010-07-16 14:12:24 -070025#include <SkRegion.h>
26
Romain Guydda57022010-07-06 11:39:32 -070027#include "Layer.h"
Romain Guy5cbbce52010-06-27 22:59:20 -070028#include "Matrix.h"
29#include "Rect.h"
30
31namespace android {
32namespace uirenderer {
33
34/**
35 * A snapshot holds information about the current state of the rendering
36 * surface. A snapshot is usually created whenever the user calls save()
37 * and discarded when the user calls restore(). Once a snapshot is created,
38 * it can hold information for deferred rendering.
39 *
40 * Each snapshot has a link to a previous snapshot, indicating the previous
41 * state of the renderer.
42 */
43class Snapshot: public LightRefBase<Snapshot> {
44public:
Romain Guy09147fb2010-07-22 13:08:20 -070045 Snapshot(): flags(0), previous(NULL), layer(NULL), fbo(0) { }
Romain Guy5cbbce52010-06-27 22:59:20 -070046
47 /**
48 * Copies the specified snapshot. Only the transform and clip rectangle
49 * are copied. The layer information is set to 0 and the transform is
50 * assumed to be dirty. The specified snapshot is stored as the previous
51 * snapshot.
52 */
Romain Guyae5575b2010-07-29 18:48:04 -070053 Snapshot(const sp<Snapshot>& s):
Romain Guyf86ef572010-07-01 11:05:42 -070054 height(s->height),
Romain Guy5cbbce52010-06-27 22:59:20 -070055 transform(s->transform),
56 clipRect(s->clipRect),
Romain Guy09147fb2010-07-22 13:08:20 -070057 flags(0),
Romain Guy5cbbce52010-06-27 22:59:20 -070058 previous(s),
Romain Guydda57022010-07-06 11:39:32 -070059 layer(NULL),
Romain Guyb82da652010-07-30 11:36:12 -070060 fbo(s->fbo) {
61 if ((s->flags & Snapshot::kFlagClipSet) &&
62 !(s->flags & Snapshot::kFlagDirtyLocalClip)) {
63 localClip.set(s->localClip);
64 } else {
65 flags |= Snapshot::kFlagDirtyLocalClip;
66 }
Romain Guy5cbbce52010-06-27 22:59:20 -070067 }
68
69 /**
70 * Various flags set on #flags.
71 */
72 enum Flags {
73 /**
74 * Indicates that the clip region was modified. When this
75 * snapshot is restored so must the clip.
76 */
77 kFlagClipSet = 0x1,
78 /**
Romain Guy5cbbce52010-06-27 22:59:20 -070079 * Indicates that this snapshot was created when saving
80 * a new layer.
81 */
Romain Guy079ba2c2010-07-16 14:12:24 -070082 kFlagIsLayer = 0x2,
Romain Guyf86ef572010-07-01 11:05:42 -070083 /**
84 * Indicates that this snapshot has changed the ortho matrix.
85 */
Romain Guy079ba2c2010-07-16 14:12:24 -070086 kFlagDirtyOrtho = 0x4,
Romain Guy09147fb2010-07-22 13:08:20 -070087 /**
88 * Indicates that the local clip should be recomputed.
89 */
90 kFlagDirtyLocalClip = 0x8,
Romain Guy5cbbce52010-06-27 22:59:20 -070091 };
92
93 /**
Romain Guy3d58c032010-07-14 16:34:53 -070094 * Intersects the current clip with the new clip rectangle.
95 */
Romain Guy079ba2c2010-07-16 14:12:24 -070096 bool clip(float left, float top, float right, float bottom, SkRegion::Op op) {
97 bool clipped = false;
98
Romain Guy959c91f2010-08-11 19:35:53 -070099 SkRect sr;
100 sr.set(left, top, right, bottom);
Romain Guy079ba2c2010-07-16 14:12:24 -0700101
Romain Guy959c91f2010-08-11 19:35:53 -0700102 SkMatrix m;
103 transform.copyTo(m);
104 m.mapRect(&sr);
105
106 Rect r(sr.fLeft, sr.fTop, sr.fRight, sr.fBottom);
Romain Guy079ba2c2010-07-16 14:12:24 -0700107 switch (op) {
Romain Guy7fac2e12010-07-16 17:10:13 -0700108 case SkRegion::kDifference_Op:
109 break;
110 case SkRegion::kIntersect_Op:
111 clipped = clipRect.intersect(r);
112 break;
113 case SkRegion::kUnion_Op:
114 clipped = clipRect.unionWith(r);
115 break;
116 case SkRegion::kXOR_Op:
117 break;
118 case SkRegion::kReverseDifference_Op:
119 break;
120 case SkRegion::kReplace_Op:
121 clipRect.set(r);
122 clipped = true;
123 break;
Romain Guy5cbbce52010-06-27 22:59:20 -0700124 }
Romain Guy079ba2c2010-07-16 14:12:24 -0700125
126 if (clipped) {
Romain Guy09147fb2010-07-22 13:08:20 -0700127 flags |= Snapshot::kFlagClipSet | Snapshot::kFlagDirtyLocalClip;
Romain Guy079ba2c2010-07-16 14:12:24 -0700128 }
129
Romain Guy3d58c032010-07-14 16:34:53 -0700130 return clipped;
Romain Guy5cbbce52010-06-27 22:59:20 -0700131 }
132
133 /**
Romain Guyd27977d2010-07-14 19:18:51 -0700134 * Sets the current clip.
135 */
136 void setClip(float left, float top, float right, float bottom) {
137 clipRect.set(left, top, right, bottom);
Romain Guy09147fb2010-07-22 13:08:20 -0700138 flags |= Snapshot::kFlagClipSet | Snapshot::kFlagDirtyLocalClip;
Romain Guy079ba2c2010-07-16 14:12:24 -0700139 }
140
141 const Rect& getLocalClip() {
Romain Guy09147fb2010-07-22 13:08:20 -0700142 if (flags & Snapshot::kFlagDirtyLocalClip) {
143 mat4 inverse;
144 inverse.loadInverse(transform);
Romain Guy959c91f2010-08-11 19:35:53 -0700145
146 SkRect sr;
147 sr.set(clipRect.left, clipRect.top, clipRect.right, clipRect.bottom);
148
149 SkMatrix m;
150 inverse.copyTo(m);
151 m.mapRect(&sr);
152
153 localClip.set(sr.fLeft, sr.fTop, sr.fRight, sr.fBottom);
154
Romain Guy09147fb2010-07-22 13:08:20 -0700155 flags &= ~Snapshot::kFlagDirtyLocalClip;
156 }
Romain Guy079ba2c2010-07-16 14:12:24 -0700157 return localClip;
Romain Guyd27977d2010-07-14 19:18:51 -0700158 }
159
160 /**
Romain Guyf86ef572010-07-01 11:05:42 -0700161 * Height of the framebuffer the snapshot is rendering into.
162 */
163 int height;
164
165 /**
Romain Guy5cbbce52010-06-27 22:59:20 -0700166 * Local transformation. Holds the current translation, scale and
167 * rotation values.
168 */
169 mat4 transform;
170
171 /**
Romain Guy079ba2c2010-07-16 14:12:24 -0700172 * Current clip region. The clip is stored in canvas-space coordinates,
173 * (screen-space coordinates in the regular case.)
Romain Guy5cbbce52010-06-27 22:59:20 -0700174 */
175 Rect clipRect;
176
177 /**
178 * Dirty flags.
179 */
180 int flags;
181
182 /**
183 * Previous snapshot.
184 */
185 sp<Snapshot> previous;
186
187 /**
Romain Guy5cbbce52010-06-27 22:59:20 -0700188 * Only set when the flag kFlagIsLayer is set.
189 */
Romain Guydda57022010-07-06 11:39:32 -0700190 Layer* layer;
Romain Guy5cbbce52010-06-27 22:59:20 -0700191 GLuint fbo;
Romain Guy5cbbce52010-06-27 22:59:20 -0700192
Romain Guyf86ef572010-07-01 11:05:42 -0700193 /**
194 * Contains the previous ortho matrix.
195 */
Romain Guy260e1022010-07-12 14:41:06 -0700196 mat4 orthoMatrix;
Romain Guyf86ef572010-07-01 11:05:42 -0700197
Romain Guy5cbbce52010-06-27 22:59:20 -0700198private:
Romain Guy079ba2c2010-07-16 14:12:24 -0700199 Rect localClip;
200
Romain Guy5cbbce52010-06-27 22:59:20 -0700201}; // class Snapshot
202
203}; // namespace uirenderer
204}; // namespace android
205
206#endif // ANDROID_UI_SNAPSHOT_H