blob: 3dcbd0be38cf3446aa6663cf259999f333858907 [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#ifndef ANDROID_HWUI_DEFERRED_DISPLAY_LIST_H
18#define ANDROID_HWUI_DEFERRED_DISPLAY_LIST_H
19
20#include <utils/Errors.h>
Chris Craikc1c5f082013-09-11 16:23:37 -070021#include <utils/LinearAllocator.h>
Chris Craikc3566d02013-02-04 16:16:33 -080022#include <utils/Vector.h>
Chris Craikc1c5f082013-09-11 16:23:37 -070023#include <utils/TinyHashMap.h>
Chris Craikc3566d02013-02-04 16:16:33 -080024
25#include "Matrix.h"
Chris Craikc1c5f082013-09-11 16:23:37 -070026#include "OpenGLRenderer.h"
Chris Craikc3566d02013-02-04 16:16:33 -080027#include "Rect.h"
Chris Craik527a3aa2013-03-04 10:19:31 -080028
29class SkBitmap;
Chris Craikc3566d02013-02-04 16:16:33 -080030
31namespace android {
32namespace uirenderer {
33
Chris Craikff785832013-03-08 13:12:16 -080034class ClipOp;
Chris Craikc3566d02013-02-04 16:16:33 -080035class DrawOp;
Chris Craikff785832013-03-08 13:12:16 -080036class SaveOp;
37class SaveLayerOp;
38class StateOp;
Chris Craikc1c5f082013-09-11 16:23:37 -070039
40class DeferredDisplayState;
Chris Craikc3566d02013-02-04 16:16:33 -080041class OpenGLRenderer;
Chris Craikc3566d02013-02-04 16:16:33 -080042
Chris Craik527a3aa2013-03-04 10:19:31 -080043class Batch;
44class DrawBatch;
45class MergingDrawBatch;
46
Romain Guy7f6d6b02013-08-06 13:49:28 -070047typedef const void* mergeid_t;
Chris Craik527a3aa2013-03-04 10:19:31 -080048
Chris Craikc1c5f082013-09-11 16:23:37 -070049class DeferredDisplayState {
50public:
51 /** static void* operator new(size_t size); PURPOSELY OMITTED **/
52 static void* operator new(size_t size, LinearAllocator& allocator) {
53 return allocator.alloc(size);
54 }
55
56 // global op bounds, mapped by mMatrix to be in screen space coordinates, clipped
57 Rect mBounds;
58
59 // the below are set and used by the OpenGLRenderer at record and deferred playback
60 bool mClipValid;
61 Rect mClip;
62 int mClipSideFlags; // specifies which sides of the bounds are clipped, unclipped if cleared
63 bool mClipped;
64 mat4 mMatrix;
65 DrawModifiers mDrawModifiers;
66 float mAlpha;
67};
68
69class OpStatePair {
70public:
71 OpStatePair()
72 : op(NULL), state(NULL) {}
73 OpStatePair(DrawOp* newOp, const DeferredDisplayState* newState)
74 : op(newOp), state(newState) {}
75 OpStatePair(const OpStatePair& other)
76 : op(other.op), state(other.state) {}
77 DrawOp* op;
78 const DeferredDisplayState* state;
79};
80
Chris Craikc3566d02013-02-04 16:16:33 -080081class DeferredDisplayList {
82public:
Chris Craik28ce94a2013-05-31 11:38:03 -070083 DeferredDisplayList(const Rect& bounds, bool avoidOverdraw = true) :
84 mBounds(bounds), mAvoidOverdraw(avoidOverdraw) {
85 clear();
86 }
Chris Craikc3566d02013-02-04 16:16:33 -080087 ~DeferredDisplayList() { clear(); }
Chris Craik28ce94a2013-05-31 11:38:03 -070088 void reset(const Rect& bounds) { mBounds.set(bounds); }
Chris Craikc3566d02013-02-04 16:16:33 -080089
90 enum OpBatchId {
Chris Craik527a3aa2013-03-04 10:19:31 -080091 kOpBatch_None = 0, // Don't batch
Chris Craikc3566d02013-02-04 16:16:33 -080092 kOpBatch_Bitmap,
93 kOpBatch_Patch,
94 kOpBatch_AlphaVertices,
95 kOpBatch_Vertices,
96 kOpBatch_AlphaMaskTexture,
97 kOpBatch_Text,
98 kOpBatch_ColorText,
99
100 kOpBatch_Count, // Add other batch ids before this
101 };
102
103 bool isEmpty() { return mBatches.isEmpty(); }
104
105 /**
106 * Plays back all of the draw ops recorded into batches to the renderer.
107 * Adjusts the state of the renderer as necessary, and restores it when complete
108 */
Chris Craikff785832013-03-08 13:12:16 -0800109 status_t flush(OpenGLRenderer& renderer, Rect& dirty);
110
111 void addClip(OpenGLRenderer& renderer, ClipOp* op);
112 void addSaveLayer(OpenGLRenderer& renderer, SaveLayerOp* op, int newSaveCount);
113 void addSave(OpenGLRenderer& renderer, SaveOp* op, int newSaveCount);
Chris Craik7273daa2013-03-28 11:25:24 -0700114 void addRestoreToCount(OpenGLRenderer& renderer, StateOp* op, int newSaveCount);
Chris Craikc3566d02013-02-04 16:16:33 -0800115
116 /**
117 * Add a draw op into the DeferredDisplayList, reordering as needed (for performance) if
Chris Craik5e49b302013-07-30 19:05:20 -0700118 * disallowReorder is false, respecting draw order when overlaps occur.
Chris Craikc3566d02013-02-04 16:16:33 -0800119 */
Chris Craikff785832013-03-08 13:12:16 -0800120 void addDrawOp(OpenGLRenderer& renderer, DrawOp* op);
Chris Craikc3566d02013-02-04 16:16:33 -0800121
122private:
Chris Craikc1c5f082013-09-11 16:23:37 -0700123 DeferredDisplayState* createState() {
124 return new (mAllocator) DeferredDisplayState();
125 }
126
127 void tryRecycleState(DeferredDisplayState* state) {
128 mAllocator.rewindIfLastAlloc(state, sizeof(DeferredDisplayState));
129 }
130
Chris Craikd90144d2013-03-19 15:03:48 -0700131 /**
Chris Craikff785832013-03-08 13:12:16 -0800132 * Resets the batching back-pointers, creating a barrier in the operation stream so that no ops
133 * added in the future will be inserted into a batch that already exist.
134 */
135 void resetBatchingState();
136
Chris Craik1206b9b2013-04-04 14:46:24 -0700137 void clear();
138
Chris Craikff785832013-03-08 13:12:16 -0800139 void storeStateOpBarrier(OpenGLRenderer& renderer, StateOp* op);
Chris Craik7273daa2013-03-28 11:25:24 -0700140 void storeRestoreToCountBarrier(OpenGLRenderer& renderer, StateOp* op, int newSaveCount);
Chris Craikff785832013-03-08 13:12:16 -0800141
142 bool recordingComplexClip() const { return mComplexClipStackStart >= 0; }
143
144 int getStateOpDeferFlags() const;
145 int getDrawOpDeferFlags() const;
146
Chris Craikf70119c2013-06-13 11:21:22 -0700147 void discardDrawingBatches(const unsigned int maxIndex);
Chris Craik28ce94a2013-05-31 11:38:03 -0700148
149 // layer space bounds of rendering
150 Rect mBounds;
151 const bool mAvoidOverdraw;
152
Chris Craikd90144d2013-03-19 15:03:48 -0700153 /**
154 * At defer time, stores the *defer time* savecount of save/saveLayer ops that were deferred, so
155 * that when an associated restoreToCount is deferred, it can be recorded as a
156 * RestoreToCountBatch
Chris Craikff785832013-03-08 13:12:16 -0800157 */
158 Vector<int> mSaveStack;
159 int mComplexClipStackStart;
Chris Craikc3566d02013-02-04 16:16:33 -0800160
Chris Craik527a3aa2013-03-04 10:19:31 -0800161 Vector<Batch*> mBatches;
162
163 // Maps batch ids to the most recent *non-merging* batch of that id
164 Batch* mBatchLookup[kOpBatch_Count];
165
166 // Points to the index after the most recent barrier
167 int mEarliestBatchIndex;
168
Chris Craik28ce94a2013-05-31 11:38:03 -0700169 // Points to the first index that may contain a pure drawing batch
170 int mEarliestUnclearedIndex;
171
Chris Craik527a3aa2013-03-04 10:19:31 -0800172 /**
173 * Maps the mergeid_t returned by an op's getMergeId() to the most recently seen
174 * MergingDrawBatch of that id. These ids are unique per draw type and guaranteed to not
175 * collide, which avoids the need to resolve mergeid collisions.
176 */
177 TinyHashMap<mergeid_t, DrawBatch*> mMergingBatches[kOpBatch_Count];
Chris Craikc1c5f082013-09-11 16:23:37 -0700178
179 LinearAllocator mAllocator;
Chris Craikc3566d02013-02-04 16:16:33 -0800180};
181
Chris Craik28ce94a2013-05-31 11:38:03 -0700182/**
183 * Struct containing information that instructs the defer
184 */
185struct DeferInfo {
186public:
187 DeferInfo() :
188 batchId(DeferredDisplayList::kOpBatch_None),
189 mergeId((mergeid_t) -1),
190 mergeable(false),
191 opaqueOverBounds(false) {
192 };
193
194 int batchId;
195 mergeid_t mergeId;
196 bool mergeable;
197 bool opaqueOverBounds; // opaque over bounds in DeferredDisplayState - can skip ops below
198};
199
Chris Craikc3566d02013-02-04 16:16:33 -0800200}; // namespace uirenderer
201}; // namespace android
202
203#endif // ANDROID_HWUI_DEFERRED_DISPLAY_LIST_H