blob: f19d61089d1a5824cf3cd348b22f87b45ad2772e [file] [log] [blame]
Chris Craikc3566d02013-02-04 16:16:33 -08001/*
2 * Copyright (C) 2013 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#define LOG_TAG "OpenGLRenderer"
18#define ATRACE_TAG ATRACE_TAG_VIEW
19
Romain Guyc46d07a2013-03-15 19:06:39 -070020#include <SkCanvas.h>
21
Chris Craikc3566d02013-02-04 16:16:33 -080022#include <utils/Trace.h>
Chris Craik28ce94a2013-05-31 11:38:03 -070023#include <ui/Rect.h>
24#include <ui/Region.h>
Chris Craikc3566d02013-02-04 16:16:33 -080025
Romain Guycf51a412013-04-08 19:40:31 -070026#include "Caches.h"
Chris Craikc3566d02013-02-04 16:16:33 -080027#include "Debug.h"
Chris Craik527a3aa2013-03-04 10:19:31 -080028#include "DeferredDisplayList.h"
Chris Craikc3566d02013-02-04 16:16:33 -080029#include "DisplayListOp.h"
30#include "OpenGLRenderer.h"
31
32#if DEBUG_DEFER
33 #define DEFER_LOGD(...) ALOGD(__VA_ARGS__)
34#else
35 #define DEFER_LOGD(...)
36#endif
37
38namespace android {
39namespace uirenderer {
40
Chris Craik1ed30c92013-04-03 12:37:35 -070041// Depth of the save stack at the beginning of batch playback at flush time
42#define FLUSH_SAVE_STACK_DEPTH 2
43
Chris Craik527a3aa2013-03-04 10:19:31 -080044#define DEBUG_COLOR_BARRIER 0x1f000000
45#define DEBUG_COLOR_MERGEDBATCH 0x5f7f7fff
46#define DEBUG_COLOR_MERGEDBATCH_SOLO 0x5f7fff7f
47
Chris Craikff785832013-03-08 13:12:16 -080048/////////////////////////////////////////////////////////////////////////////////
49// Operation Batches
50/////////////////////////////////////////////////////////////////////////////////
51
Chris Craik527a3aa2013-03-04 10:19:31 -080052class Batch {
Chris Craikc3566d02013-02-04 16:16:33 -080053public:
Chris Craik527a3aa2013-03-04 10:19:31 -080054 virtual status_t replay(OpenGLRenderer& renderer, Rect& dirty, int index) = 0;
55 virtual ~Batch() {}
Chris Craik28ce94a2013-05-31 11:38:03 -070056 virtual bool purelyDrawBatch() { return false; }
57 virtual bool coversBounds(const Rect& bounds) { return false; }
Chris Craik527a3aa2013-03-04 10:19:31 -080058};
Chris Craikc3566d02013-02-04 16:16:33 -080059
Chris Craik527a3aa2013-03-04 10:19:31 -080060class DrawBatch : public Batch {
61public:
Chris Craik28ce94a2013-05-31 11:38:03 -070062 DrawBatch(const DeferInfo& deferInfo) : mAllOpsOpaque(true),
63 mBatchId(deferInfo.batchId), mMergeId(deferInfo.mergeId) {
Chris Craik527a3aa2013-03-04 10:19:31 -080064 mOps.clear();
65 }
66
67 virtual ~DrawBatch() { mOps.clear(); }
Chris Craikc3566d02013-02-04 16:16:33 -080068
Chris Craik28ce94a2013-05-31 11:38:03 -070069 virtual void add(DrawOp* op, bool opaqueOverBounds) {
Chris Craikc3566d02013-02-04 16:16:33 -080070 // NOTE: ignore empty bounds special case, since we don't merge across those ops
71 mBounds.unionWith(op->state.mBounds);
Chris Craik28ce94a2013-05-31 11:38:03 -070072 mAllOpsOpaque &= opaqueOverBounds;
Chris Craikc3566d02013-02-04 16:16:33 -080073 mOps.add(op);
74 }
75
Chris Craik527a3aa2013-03-04 10:19:31 -080076 bool intersects(Rect& rect) {
Chris Craikc3566d02013-02-04 16:16:33 -080077 if (!rect.intersects(mBounds)) return false;
Chris Craikff785832013-03-08 13:12:16 -080078
Chris Craikc3566d02013-02-04 16:16:33 -080079 for (unsigned int i = 0; i < mOps.size(); i++) {
80 if (rect.intersects(mOps[i]->state.mBounds)) {
81#if DEBUG_DEFER
82 DEFER_LOGD("op intersects with op %p with bounds %f %f %f %f:", mOps[i],
83 mOps[i]->state.mBounds.left, mOps[i]->state.mBounds.top,
84 mOps[i]->state.mBounds.right, mOps[i]->state.mBounds.bottom);
85 mOps[i]->output(2);
86#endif
87 return true;
88 }
89 }
90 return false;
91 }
92
Chris Craik527a3aa2013-03-04 10:19:31 -080093 virtual status_t replay(OpenGLRenderer& renderer, Rect& dirty, int index) {
Chris Craik41541822013-05-03 16:35:54 -070094 DEFER_LOGD("%d replaying DrawBatch %p, with %d ops (batch id %x, merge id %p)",
95 index, this, mOps.size(), getBatchId(), getMergeId());
Chris Craikff785832013-03-08 13:12:16 -080096
97 status_t status = DrawGlInfo::kStatusDone;
98 DisplayListLogBuffer& logBuffer = DisplayListLogBuffer::getInstance();
99 for (unsigned int i = 0; i < mOps.size(); i++) {
100 DrawOp* op = mOps[i];
101
Chris Craik7273daa2013-03-28 11:25:24 -0700102 renderer.restoreDisplayState(op->state);
Chris Craikff785832013-03-08 13:12:16 -0800103
104#if DEBUG_DISPLAY_LIST_OPS_AS_EVENTS
Chris Craikd90144d2013-03-19 15:03:48 -0700105 renderer.eventMark(op->name());
Chris Craikff785832013-03-08 13:12:16 -0800106#endif
Chris Craikff785832013-03-08 13:12:16 -0800107 logBuffer.writeCommand(0, op->name());
Chris Craikd4b43b32013-05-09 13:07:52 -0700108 status |= op->applyDraw(renderer, dirty);
Chris Craik527a3aa2013-03-04 10:19:31 -0800109
110#if DEBUG_MERGE_BEHAVIOR
111 Rect& bounds = mOps[i]->state.mBounds;
112 int batchColor = 0x1f000000;
113 if (getBatchId() & 0x1) batchColor |= 0x0000ff;
114 if (getBatchId() & 0x2) batchColor |= 0x00ff00;
115 if (getBatchId() & 0x4) batchColor |= 0xff0000;
116 renderer.drawScreenSpaceColorRect(bounds.left, bounds.top, bounds.right, bounds.bottom,
117 batchColor);
118#endif
Chris Craikff785832013-03-08 13:12:16 -0800119 }
120 return status;
121 }
122
Chris Craik28ce94a2013-05-31 11:38:03 -0700123 virtual bool purelyDrawBatch() { return true; }
124
125 virtual bool coversBounds(const Rect& bounds) {
126 if (CC_LIKELY(!mAllOpsOpaque || !mBounds.contains(bounds) || count() == 1)) return false;
127
128 Region uncovered(android::Rect(bounds.left, bounds.top, bounds.right, bounds.bottom));
129 for (unsigned int i = 0; i < mOps.size(); i++) {
130 Rect &r = mOps[i]->state.mBounds;
131 uncovered.subtractSelf(android::Rect(r.left, r.top, r.right, r.bottom));
132 }
133 return uncovered.isEmpty();
134 }
135
Chris Craik527a3aa2013-03-04 10:19:31 -0800136 inline int getBatchId() const { return mBatchId; }
137 inline mergeid_t getMergeId() const { return mMergeId; }
Chris Craikff785832013-03-08 13:12:16 -0800138 inline int count() const { return mOps.size(); }
Chris Craik527a3aa2013-03-04 10:19:31 -0800139
140protected:
Chris Craikff785832013-03-08 13:12:16 -0800141 Vector<DrawOp*> mOps;
Chris Craik28ce94a2013-05-31 11:38:03 -0700142 Rect mBounds; // union of bounds of contained ops
Chris Craik527a3aa2013-03-04 10:19:31 -0800143private:
Chris Craik28ce94a2013-05-31 11:38:03 -0700144 bool mAllOpsOpaque;
Chris Craik527a3aa2013-03-04 10:19:31 -0800145 int mBatchId;
146 mergeid_t mMergeId;
Chris Craikc3566d02013-02-04 16:16:33 -0800147};
148
Chris Craik527a3aa2013-03-04 10:19:31 -0800149// compare alphas approximately, with a small margin
150#define NEQ_FALPHA(lhs, rhs) \
151 fabs((float)lhs - (float)rhs) > 0.001f
152
153class MergingDrawBatch : public DrawBatch {
154public:
Chris Craik28ce94a2013-05-31 11:38:03 -0700155 MergingDrawBatch(DeferInfo& deferInfo, Rect viewport) :
156 DrawBatch(deferInfo), mClipRect(viewport), mClipSideFlags(kClipSide_Unclipped) {}
Chris Craik527a3aa2013-03-04 10:19:31 -0800157
158 /*
159 * Checks if a (mergeable) op can be merged into this batch
160 *
161 * If true, the op's multiDraw must be guaranteed to handle both ops simultaneously, so it is
162 * important to consider all paint attributes used in the draw calls in deciding both a) if an
163 * op tries to merge at all, and b) if the op
164 *
165 * False positives can lead to information from the paints of subsequent merged operations being
166 * dropped, so we make simplifying qualifications on the ops that can merge, per op type.
167 */
168 bool canMergeWith(DrawOp* op) {
Chris Craik527a3aa2013-03-04 10:19:31 -0800169 bool isTextBatch = getBatchId() == DeferredDisplayList::kOpBatch_Text ||
170 getBatchId() == DeferredDisplayList::kOpBatch_ColorText;
171
172 // Overlapping other operations is only allowed for text without shadow. For other ops,
173 // multiDraw isn't guaranteed to overdraw correctly
174 if (!isTextBatch || op->state.mDrawModifiers.mHasShadow) {
175 if (intersects(op->state.mBounds)) return false;
176 }
Chris Craik527a3aa2013-03-04 10:19:31 -0800177 const DeferredDisplayState& lhs = op->state;
178 const DeferredDisplayState& rhs = mOps[0]->state;
179
180 if (NEQ_FALPHA(lhs.mAlpha, rhs.mAlpha)) return false;
181
Chris Craik28ce94a2013-05-31 11:38:03 -0700182 // If colliding flags, ensure bounds are equal
183 // NOTE: only needed if op to be added is clipped *and* within old valid clip (per dimension)
184 int collidingClipSideFlags = mClipSideFlags & op->state.mClipSideFlags;
185 if (CC_UNLIKELY(collidingClipSideFlags)) {
186 // if multiple ops are clipped on the same side, they must be clipped at the same
187 // coordinate to be merged
188 if ((collidingClipSideFlags & kClipSide_Left) &&
189 mClipRect.left != op->state.mClip.left) return false;
190 if ((collidingClipSideFlags & kClipSide_Top) &&
191 mClipRect.top != op->state.mClip.top) return false;
192 if ((collidingClipSideFlags & kClipSide_Right) &&
193 mClipRect.right != op->state.mClip.right) return false;
194 if ((collidingClipSideFlags & kClipSide_Bottom) &&
195 mClipRect.bottom != op->state.mClip.bottom) return false;
196 }
197 // if op is outside of batch clip rect, it can't share its clip
198 if (!mClipRect.contains(op->state.mBounds)) return false;
199
Chris Craik527a3aa2013-03-04 10:19:31 -0800200 // if paints are equal, then modifiers + paint attribs don't need to be compared
201 if (op->mPaint == mOps[0]->mPaint) return true;
202
203 if (op->getPaintAlpha() != mOps[0]->getPaintAlpha()) return false;
204
205 /* Draw Modifiers compatibility check
206 *
207 * Shadows are ignored, as only text uses them, and in that case they are drawn
208 * per-DrawTextOp, before the unified text draw. Because of this, it's always safe to merge
209 * text UNLESS a later draw's shadow should overlays a previous draw's text. This is covered
210 * above with the intersection check.
211 *
212 * OverrideLayerAlpha is also ignored, as it's only used for drawing layers, which are never
213 * merged.
214 *
215 * These ignore cases prevent us from simply memcmp'ing the drawModifiers
216 */
Chris Craik527a3aa2013-03-04 10:19:31 -0800217 const DrawModifiers& lhsMod = lhs.mDrawModifiers;
218 const DrawModifiers& rhsMod = rhs.mDrawModifiers;
219 if (lhsMod.mShader != rhsMod.mShader) return false;
220 if (lhsMod.mColorFilter != rhsMod.mColorFilter) return false;
221
222 // Draw filter testing expects bit fields to be clear if filter not set.
223 if (lhsMod.mHasDrawFilter != rhsMod.mHasDrawFilter) return false;
224 if (lhsMod.mPaintFilterClearBits != rhsMod.mPaintFilterClearBits) return false;
225 if (lhsMod.mPaintFilterSetBits != rhsMod.mPaintFilterSetBits) return false;
226
227 return true;
228 }
229
Chris Craik28ce94a2013-05-31 11:38:03 -0700230 virtual void add(DrawOp* op, bool opaqueOverBounds) {
231 DrawBatch::add(op, opaqueOverBounds);
232
233 const int newClipSideFlags = op->state.mClipSideFlags;
234 mClipSideFlags |= newClipSideFlags;
235 if (newClipSideFlags & kClipSide_Left) mClipRect.left = op->state.mClip.left;
236 if (newClipSideFlags & kClipSide_Top) mClipRect.top = op->state.mClip.top;
237 if (newClipSideFlags & kClipSide_Right) mClipRect.right = op->state.mClip.right;
238 if (newClipSideFlags & kClipSide_Bottom) mClipRect.bottom = op->state.mClip.bottom;
239 }
240
Chris Craik527a3aa2013-03-04 10:19:31 -0800241 virtual status_t replay(OpenGLRenderer& renderer, Rect& dirty, int index) {
Chris Craik28ce94a2013-05-31 11:38:03 -0700242 DEFER_LOGD("%d replaying MergingDrawBatch %p, with %d ops,"
243 " clip flags %x (batch id %x, merge id %p)",
244 index, this, mOps.size(), mClipSideFlags, getBatchId(), getMergeId());
Chris Craik527a3aa2013-03-04 10:19:31 -0800245 if (mOps.size() == 1) {
Chris Craik28ce94a2013-05-31 11:38:03 -0700246 return DrawBatch::replay(renderer, dirty, -1);
Chris Craik527a3aa2013-03-04 10:19:31 -0800247 }
248
Chris Craik28ce94a2013-05-31 11:38:03 -0700249 // clipping in the merged case is done ahead of time since all ops share the clip (if any)
250 renderer.setupMergedMultiDraw(mClipSideFlags ? &mClipRect : NULL);
251
Chris Craik527a3aa2013-03-04 10:19:31 -0800252 DrawOp* op = mOps[0];
Chris Craik527a3aa2013-03-04 10:19:31 -0800253 DisplayListLogBuffer& buffer = DisplayListLogBuffer::getInstance();
254 buffer.writeCommand(0, "multiDraw");
255 buffer.writeCommand(1, op->name());
Chris Craikd4b43b32013-05-09 13:07:52 -0700256 status_t status = op->multiDraw(renderer, dirty, mOps, mBounds);
Chris Craik527a3aa2013-03-04 10:19:31 -0800257
258#if DEBUG_MERGE_BEHAVIOR
259 renderer.drawScreenSpaceColorRect(mBounds.left, mBounds.top, mBounds.right, mBounds.bottom,
260 DEBUG_COLOR_MERGEDBATCH);
261#endif
262 return status;
263 }
Chris Craik28ce94a2013-05-31 11:38:03 -0700264
265private:
266 /*
267 * Contains the effective clip rect shared by all merged ops. Initialized to the layer viewport,
268 * it will shrink if an op must be clipped on a certain side. The clipped sides are reflected in
269 * mClipSideFlags.
270 */
271 Rect mClipRect;
272 int mClipSideFlags;
Chris Craik527a3aa2013-03-04 10:19:31 -0800273};
274
275class StateOpBatch : public Batch {
Chris Craikff785832013-03-08 13:12:16 -0800276public:
277 // creates a single operation batch
278 StateOpBatch(StateOp* op) : mOp(op) {}
279
Chris Craik527a3aa2013-03-04 10:19:31 -0800280 virtual status_t replay(OpenGLRenderer& renderer, Rect& dirty, int index) {
Chris Craikff785832013-03-08 13:12:16 -0800281 DEFER_LOGD("replaying state op batch %p", this);
Chris Craik7273daa2013-03-28 11:25:24 -0700282 renderer.restoreDisplayState(mOp->state);
Chris Craikff785832013-03-08 13:12:16 -0800283
284 // use invalid save count because it won't be used at flush time - RestoreToCountOp is the
285 // only one to use it, and we don't use that class at flush time, instead calling
286 // renderer.restoreToCount directly
287 int saveCount = -1;
288 mOp->applyState(renderer, saveCount);
289 return DrawGlInfo::kStatusDone;
290 }
291
292private:
Chris Craik7273daa2013-03-28 11:25:24 -0700293 const StateOp* mOp;
Chris Craikff785832013-03-08 13:12:16 -0800294};
295
Chris Craik527a3aa2013-03-04 10:19:31 -0800296class RestoreToCountBatch : public Batch {
Chris Craikff785832013-03-08 13:12:16 -0800297public:
Chris Craik7273daa2013-03-28 11:25:24 -0700298 RestoreToCountBatch(StateOp* op, int restoreCount) : mOp(op), mRestoreCount(restoreCount) {}
Chris Craikff785832013-03-08 13:12:16 -0800299
Chris Craik527a3aa2013-03-04 10:19:31 -0800300 virtual status_t replay(OpenGLRenderer& renderer, Rect& dirty, int index) {
Chris Craikff785832013-03-08 13:12:16 -0800301 DEFER_LOGD("batch %p restoring to count %d", this, mRestoreCount);
Chris Craik7273daa2013-03-28 11:25:24 -0700302
303 renderer.restoreDisplayState(mOp->state);
Chris Craikff785832013-03-08 13:12:16 -0800304 renderer.restoreToCount(mRestoreCount);
Chris Craikff785832013-03-08 13:12:16 -0800305 return DrawGlInfo::kStatusDone;
306 }
307
308private:
Chris Craik7273daa2013-03-28 11:25:24 -0700309 // we use the state storage for the RestoreToCountOp, but don't replay the op itself
310 const StateOp* mOp;
Chris Craikff785832013-03-08 13:12:16 -0800311 /*
312 * The count used here represents the flush() time saveCount. This is as opposed to the
313 * DisplayList record time, or defer() time values (which are RestoreToCountOp's mCount, and
314 * (saveCount + mCount) respectively). Since the count is different from the original
315 * RestoreToCountOp, we don't store a pointer to the op, as elsewhere.
316 */
317 const int mRestoreCount;
318};
319
Chris Craik527a3aa2013-03-04 10:19:31 -0800320#if DEBUG_MERGE_BEHAVIOR
321class BarrierDebugBatch : public Batch {
322 virtual status_t replay(OpenGLRenderer& renderer, Rect& dirty, int index) {
323 renderer.drawScreenSpaceColorRect(0, 0, 10000, 10000, DEBUG_COLOR_BARRIER);
324 return DrawGlInfo::kStatusDrew;
325 }
326};
327#endif
328
Chris Craikff785832013-03-08 13:12:16 -0800329/////////////////////////////////////////////////////////////////////////////////
330// DeferredDisplayList
331/////////////////////////////////////////////////////////////////////////////////
332
333void DeferredDisplayList::resetBatchingState() {
Chris Craikc3566d02013-02-04 16:16:33 -0800334 for (int i = 0; i < kOpBatch_Count; i++) {
Chris Craik527a3aa2013-03-04 10:19:31 -0800335 mBatchLookup[i] = NULL;
336 mMergingBatches[i].clear();
Chris Craikc3566d02013-02-04 16:16:33 -0800337 }
Chris Craik527a3aa2013-03-04 10:19:31 -0800338#if DEBUG_MERGE_BEHAVIOR
339 if (mBatches.size() != 0) {
340 mBatches.add(new BarrierDebugBatch());
341 }
342#endif
343 mEarliestBatchIndex = mBatches.size();
Chris Craikff785832013-03-08 13:12:16 -0800344}
345
346void DeferredDisplayList::clear() {
347 resetBatchingState();
348 mComplexClipStackStart = -1;
349
Chris Craikc3566d02013-02-04 16:16:33 -0800350 for (unsigned int i = 0; i < mBatches.size(); i++) {
351 delete mBatches[i];
352 }
353 mBatches.clear();
Chris Craikff785832013-03-08 13:12:16 -0800354 mSaveStack.clear();
Chris Craik527a3aa2013-03-04 10:19:31 -0800355 mEarliestBatchIndex = 0;
Chris Craik28ce94a2013-05-31 11:38:03 -0700356 mEarliestUnclearedIndex = 0;
Chris Craikc3566d02013-02-04 16:16:33 -0800357}
358
Chris Craikff785832013-03-08 13:12:16 -0800359/////////////////////////////////////////////////////////////////////////////////
360// Operation adding
361/////////////////////////////////////////////////////////////////////////////////
362
363int DeferredDisplayList::getStateOpDeferFlags() const {
364 // For both clipOp and save(Layer)Op, we don't want to save drawing info, and only want to save
365 // the clip if we aren't recording a complex clip (and can thus trust it to be a rect)
366 return recordingComplexClip() ? 0 : kStateDeferFlag_Clip;
367}
368
369int DeferredDisplayList::getDrawOpDeferFlags() const {
370 return kStateDeferFlag_Draw | getStateOpDeferFlags();
371}
372
373/**
374 * When an clipping operation occurs that could cause a complex clip, record the operation and all
375 * subsequent clipOps, save/restores (if the clip flag is set). During a flush, instead of loading
376 * the clip from deferred state, we play back all of the relevant state operations that generated
377 * the complex clip.
378 *
379 * Note that we don't need to record the associated restore operation, since operations at defer
380 * time record whether they should store the renderer's current clip
381 */
382void DeferredDisplayList::addClip(OpenGLRenderer& renderer, ClipOp* op) {
383 if (recordingComplexClip() || op->canCauseComplexClip() || !renderer.hasRectToRectTransform()) {
384 DEFER_LOGD("%p Received complex clip operation %p", this, op);
385
386 // NOTE: defer clip op before setting mComplexClipStackStart so previous clip is recorded
387 storeStateOpBarrier(renderer, op);
388
389 if (!recordingComplexClip()) {
390 mComplexClipStackStart = renderer.getSaveCount() - 1;
391 DEFER_LOGD(" Starting complex clip region, start is %d", mComplexClipStackStart);
Chris Craikc3566d02013-02-04 16:16:33 -0800392 }
Chris Craikff785832013-03-08 13:12:16 -0800393 }
394}
395
396/**
397 * For now, we record save layer operations as barriers in the batch list, preventing drawing
398 * operations from reordering around the saveLayer and it's associated restore()
399 *
400 * In the future, we should send saveLayer commands (if they can be played out of order) and their
401 * contained drawing operations to a seperate list of batches, so that they may draw at the
402 * beginning of the frame. This would avoid targetting and removing an FBO in the middle of a frame.
403 *
404 * saveLayer operations should be pulled to the beginning of the frame if the canvas doesn't have a
405 * complex clip, and if the flags (kClip_SaveFlag & kClipToLayer_SaveFlag) are set.
406 */
407void DeferredDisplayList::addSaveLayer(OpenGLRenderer& renderer,
408 SaveLayerOp* op, int newSaveCount) {
409 DEFER_LOGD("%p adding saveLayerOp %p, flags %x, new count %d",
410 this, op, op->getFlags(), newSaveCount);
411
412 storeStateOpBarrier(renderer, op);
413 mSaveStack.push(newSaveCount);
414}
415
416/**
417 * Takes save op and it's return value - the new save count - and stores it into the stream as a
418 * barrier if it's needed to properly modify a complex clip
419 */
420void DeferredDisplayList::addSave(OpenGLRenderer& renderer, SaveOp* op, int newSaveCount) {
421 int saveFlags = op->getFlags();
422 DEFER_LOGD("%p adding saveOp %p, flags %x, new count %d", this, op, saveFlags, newSaveCount);
423
424 if (recordingComplexClip() && (saveFlags & SkCanvas::kClip_SaveFlag)) {
425 // store and replay the save operation, as it may be needed to correctly playback the clip
426 DEFER_LOGD(" adding save barrier with new save count %d", newSaveCount);
427 storeStateOpBarrier(renderer, op);
428 mSaveStack.push(newSaveCount);
429 }
430}
431
432/**
433 * saveLayer() commands must be associated with a restoreToCount batch that will clean up and draw
434 * the layer in the deferred list
435 *
436 * other save() commands which occur as children of a snapshot with complex clip will be deferred,
437 * and must be restored
438 *
439 * Either will act as a barrier to draw operation reordering, as we want to play back layer
440 * save/restore and complex canvas modifications (including save/restore) in order.
441 */
Chris Craik7273daa2013-03-28 11:25:24 -0700442void DeferredDisplayList::addRestoreToCount(OpenGLRenderer& renderer, StateOp* op,
443 int newSaveCount) {
Chris Craikff785832013-03-08 13:12:16 -0800444 DEFER_LOGD("%p addRestoreToCount %d", this, newSaveCount);
445
446 if (recordingComplexClip() && newSaveCount <= mComplexClipStackStart) {
447 mComplexClipStackStart = -1;
448 resetBatchingState();
449 }
450
451 if (mSaveStack.isEmpty() || newSaveCount > mSaveStack.top()) {
452 return;
453 }
454
455 while (!mSaveStack.isEmpty() && mSaveStack.top() >= newSaveCount) mSaveStack.pop();
456
Chris Craik1ed30c92013-04-03 12:37:35 -0700457 storeRestoreToCountBarrier(renderer, op, mSaveStack.size() + FLUSH_SAVE_STACK_DEPTH);
Chris Craikff785832013-03-08 13:12:16 -0800458}
459
460void DeferredDisplayList::addDrawOp(OpenGLRenderer& renderer, DrawOp* op) {
461 if (renderer.storeDisplayState(op->state, getDrawOpDeferFlags())) {
462 return; // quick rejected
463 }
464
Chris Craik28ce94a2013-05-31 11:38:03 -0700465 DeferInfo deferInfo;
466 op->onDefer(renderer, deferInfo);
Chris Craik527a3aa2013-03-04 10:19:31 -0800467
468 // complex clip has a complex set of expectations on the renderer state - for now, avoid taking
469 // the merge path in those cases
Chris Craik28ce94a2013-05-31 11:38:03 -0700470 deferInfo.mergeable &= !recordingComplexClip();
471
472 if (CC_LIKELY(mAvoidOverdraw) && mBatches.size() &&
473 deferInfo.opaqueOverBounds && op->state.mBounds.contains(mBounds)) {
Chris Craikf70119c2013-06-13 11:21:22 -0700474 // avoid overdraw by resetting drawing state + discarding drawing ops
Chris Craik28ce94a2013-05-31 11:38:03 -0700475 discardDrawingBatches(mBatches.size() - 1);
Chris Craikf70119c2013-06-13 11:21:22 -0700476 resetBatchingState();
Chris Craik28ce94a2013-05-31 11:38:03 -0700477 }
Chris Craikff785832013-03-08 13:12:16 -0800478
479 if (CC_UNLIKELY(renderer.getCaches().drawReorderDisabled)) {
480 // TODO: elegant way to reuse batches?
Chris Craik28ce94a2013-05-31 11:38:03 -0700481 DrawBatch* b = new DrawBatch(deferInfo);
482 b->add(op, deferInfo.opaqueOverBounds);
Chris Craikc3566d02013-02-04 16:16:33 -0800483 mBatches.add(b);
484 return;
485 }
486
Chris Craik527a3aa2013-03-04 10:19:31 -0800487 // find the latest batch of the new op's type, and try to merge the new op into it
488 DrawBatch* targetBatch = NULL;
Chris Craikc3566d02013-02-04 16:16:33 -0800489
Chris Craik527a3aa2013-03-04 10:19:31 -0800490 // insertion point of a new batch, will hopefully be immediately after similar batch
491 // (eventually, should be similar shader)
492 int insertBatchIndex = mBatches.size();
Chris Craikc3566d02013-02-04 16:16:33 -0800493 if (!mBatches.isEmpty()) {
494 if (op->state.mBounds.isEmpty()) {
495 // don't know the bounds for op, so add to last batch and start from scratch on next op
Chris Craik28ce94a2013-05-31 11:38:03 -0700496 DrawBatch* b = new DrawBatch(deferInfo);
497 b->add(op, deferInfo.opaqueOverBounds);
Chris Craik527a3aa2013-03-04 10:19:31 -0800498 mBatches.add(b);
499 resetBatchingState();
Chris Craikc3566d02013-02-04 16:16:33 -0800500#if DEBUG_DEFER
501 DEFER_LOGD("Warning: Encountered op with empty bounds, resetting batches");
502 op->output(2);
503#endif
504 return;
505 }
506
Chris Craik28ce94a2013-05-31 11:38:03 -0700507 if (deferInfo.mergeable) {
Chris Craik527a3aa2013-03-04 10:19:31 -0800508 // Try to merge with any existing batch with same mergeId.
Chris Craik28ce94a2013-05-31 11:38:03 -0700509 if (mMergingBatches[deferInfo.batchId].get(deferInfo.mergeId, targetBatch)) {
Chris Craik527a3aa2013-03-04 10:19:31 -0800510 if (!((MergingDrawBatch*) targetBatch)->canMergeWith(op)) {
511 targetBatch = NULL;
512 }
513 }
514 } else {
515 // join with similar, non-merging batch
Chris Craik28ce94a2013-05-31 11:38:03 -0700516 targetBatch = (DrawBatch*)mBatchLookup[deferInfo.batchId];
Chris Craik527a3aa2013-03-04 10:19:31 -0800517 }
518
Chris Craik28ce94a2013-05-31 11:38:03 -0700519 if (targetBatch || deferInfo.mergeable) {
Chris Craikc3566d02013-02-04 16:16:33 -0800520 // iterate back toward target to see if anything drawn since should overlap the new op
Chris Craik527a3aa2013-03-04 10:19:31 -0800521 // if no target, merging ops still interate to find similar batch to insert after
522 for (int i = mBatches.size() - 1; i >= mEarliestBatchIndex; i--) {
523 DrawBatch* overBatch = (DrawBatch*)mBatches[i];
524
525 if (overBatch == targetBatch) break;
526
527 // TODO: also consider shader shared between batch types
Chris Craik28ce94a2013-05-31 11:38:03 -0700528 if (deferInfo.batchId == overBatch->getBatchId()) {
Chris Craik527a3aa2013-03-04 10:19:31 -0800529 insertBatchIndex = i + 1;
530 if (!targetBatch) break; // found insert position, quit
531 }
532
Chris Craikc3566d02013-02-04 16:16:33 -0800533 if (overBatch->intersects(op->state.mBounds)) {
Chris Craik527a3aa2013-03-04 10:19:31 -0800534 // NOTE: it may be possible to optimize for special cases where two operations
535 // of the same batch/paint could swap order, such as with a non-mergeable
536 // (clipped) and a mergeable text operation
Chris Craikc3566d02013-02-04 16:16:33 -0800537 targetBatch = NULL;
538#if DEBUG_DEFER
539 DEFER_LOGD("op couldn't join batch %d, was intersected by batch %d",
540 targetIndex, i);
541 op->output(2);
542#endif
543 break;
544 }
545 }
546 }
547 }
Chris Craik527a3aa2013-03-04 10:19:31 -0800548
Chris Craikc3566d02013-02-04 16:16:33 -0800549 if (!targetBatch) {
Chris Craik28ce94a2013-05-31 11:38:03 -0700550 if (deferInfo.mergeable) {
551 targetBatch = new MergingDrawBatch(deferInfo, mBounds);
552 mMergingBatches[deferInfo.batchId].put(deferInfo.mergeId, targetBatch);
Chris Craik527a3aa2013-03-04 10:19:31 -0800553 } else {
Chris Craik28ce94a2013-05-31 11:38:03 -0700554 targetBatch = new DrawBatch(deferInfo);
555 mBatchLookup[deferInfo.batchId] = targetBatch;
Chris Craikc3566d02013-02-04 16:16:33 -0800556 }
Chris Craik527a3aa2013-03-04 10:19:31 -0800557
Chris Craikf70119c2013-06-13 11:21:22 -0700558 DEFER_LOGD("creating %singBatch %p, bid %x, at %d",
559 deferInfo.mergeable ? "Merg" : "Draw",
560 targetBatch, deferInfo.batchId, insertBatchIndex);
Chris Craik527a3aa2013-03-04 10:19:31 -0800561 mBatches.insertAt(targetBatch, insertBatchIndex);
Chris Craikc3566d02013-02-04 16:16:33 -0800562 }
Chris Craik527a3aa2013-03-04 10:19:31 -0800563
Chris Craik28ce94a2013-05-31 11:38:03 -0700564 targetBatch->add(op, deferInfo.opaqueOverBounds);
Chris Craikc3566d02013-02-04 16:16:33 -0800565}
566
Chris Craikff785832013-03-08 13:12:16 -0800567void DeferredDisplayList::storeStateOpBarrier(OpenGLRenderer& renderer, StateOp* op) {
568 DEFER_LOGD("%p adding state op barrier at pos %d", this, mBatches.size());
569
570 renderer.storeDisplayState(op->state, getStateOpDeferFlags());
571 mBatches.add(new StateOpBatch(op));
572 resetBatchingState();
573}
574
Chris Craik7273daa2013-03-28 11:25:24 -0700575void DeferredDisplayList::storeRestoreToCountBarrier(OpenGLRenderer& renderer, StateOp* op,
576 int newSaveCount) {
Chris Craikff785832013-03-08 13:12:16 -0800577 DEFER_LOGD("%p adding restore to count %d barrier, pos %d",
578 this, newSaveCount, mBatches.size());
579
Chris Craik7273daa2013-03-28 11:25:24 -0700580 // store displayState for the restore operation, as it may be associated with a saveLayer that
581 // doesn't have kClip_SaveFlag set
582 renderer.storeDisplayState(op->state, getStateOpDeferFlags());
583 mBatches.add(new RestoreToCountBatch(op, newSaveCount));
Chris Craikff785832013-03-08 13:12:16 -0800584 resetBatchingState();
585}
586
587/////////////////////////////////////////////////////////////////////////////////
588// Replay / flush
589/////////////////////////////////////////////////////////////////////////////////
590
Chris Craik527a3aa2013-03-04 10:19:31 -0800591static status_t replayBatchList(const Vector<Batch*>& batchList,
Chris Craikff785832013-03-08 13:12:16 -0800592 OpenGLRenderer& renderer, Rect& dirty) {
593 status_t status = DrawGlInfo::kStatusDone;
594
Chris Craikff785832013-03-08 13:12:16 -0800595 for (unsigned int i = 0; i < batchList.size(); i++) {
Chris Craik28ce94a2013-05-31 11:38:03 -0700596 if (batchList[i]) {
597 status |= batchList[i]->replay(renderer, dirty, i);
598 }
Chris Craikff785832013-03-08 13:12:16 -0800599 }
Chris Craik527a3aa2013-03-04 10:19:31 -0800600 DEFER_LOGD("--flushed, drew %d batches", batchList.size());
Chris Craikff785832013-03-08 13:12:16 -0800601 return status;
602}
603
604status_t DeferredDisplayList::flush(OpenGLRenderer& renderer, Rect& dirty) {
605 ATRACE_NAME("flush drawing commands");
Romain Guycf51a412013-04-08 19:40:31 -0700606 Caches::getInstance().fontRenderer->endPrecaching();
607
Chris Craikc3566d02013-02-04 16:16:33 -0800608 status_t status = DrawGlInfo::kStatusDone;
609
610 if (isEmpty()) return status; // nothing to flush
Chris Craika4e16c52013-03-22 10:00:48 -0700611 renderer.restoreToCount(1);
Chris Craikc3566d02013-02-04 16:16:33 -0800612
613 DEFER_LOGD("--flushing");
Romain Guy0f667532013-03-01 14:31:04 -0800614 renderer.eventMark("Flush");
615
Chris Craika4e16c52013-03-22 10:00:48 -0700616 // save and restore (with draw modifiers) so that reordering doesn't affect final state
Chris Craikd90144d2013-03-19 15:03:48 -0700617 DrawModifiers restoreDrawModifiers = renderer.getDrawModifiers();
Chris Craika4e16c52013-03-22 10:00:48 -0700618 renderer.save(SkCanvas::kMatrix_SaveFlag | SkCanvas::kClip_SaveFlag);
619
Chris Craik28ce94a2013-05-31 11:38:03 -0700620 if (CC_LIKELY(mAvoidOverdraw)) {
621 for (unsigned int i = 1; i < mBatches.size(); i++) {
622 if (mBatches[i] && mBatches[i]->coversBounds(mBounds)) {
623 discardDrawingBatches(i - 1);
624 }
625 }
626 }
Chris Craik1ed30c92013-04-03 12:37:35 -0700627 // NOTE: depth of the save stack at this point, before playback, should be reflected in
628 // FLUSH_SAVE_STACK_DEPTH, so that save/restores match up correctly
Chris Craikff785832013-03-08 13:12:16 -0800629 status |= replayBatchList(mBatches, renderer, dirty);
Chris Craika4e16c52013-03-22 10:00:48 -0700630
631 renderer.restoreToCount(1);
Chris Craikd90144d2013-03-19 15:03:48 -0700632 renderer.setDrawModifiers(restoreDrawModifiers);
Chris Craikc3566d02013-02-04 16:16:33 -0800633
Chris Craikff785832013-03-08 13:12:16 -0800634 DEFER_LOGD("--flush complete, returning %x", status);
Chris Craikc3566d02013-02-04 16:16:33 -0800635 clear();
636 return status;
637}
638
Chris Craikf70119c2013-06-13 11:21:22 -0700639void DeferredDisplayList::discardDrawingBatches(const unsigned int maxIndex) {
Chris Craik28ce94a2013-05-31 11:38:03 -0700640 for (unsigned int i = mEarliestUnclearedIndex; i <= maxIndex; i++) {
Chris Craikf70119c2013-06-13 11:21:22 -0700641 // leave deferred state ops alone for simplicity (empty save restore pairs may now exist)
Chris Craik28ce94a2013-05-31 11:38:03 -0700642 if (mBatches[i] && mBatches[i]->purelyDrawBatch()) {
643 DrawBatch* b = (DrawBatch*) mBatches[i];
644 delete mBatches[i];
645 mBatches.replaceAt(NULL, i);
646 }
647 }
648 mEarliestUnclearedIndex = maxIndex + 1;
649}
650
Chris Craikc3566d02013-02-04 16:16:33 -0800651}; // namespace uirenderer
652}; // namespace android