blob: 2d5979f2f1a758a0bf0b9d3aa52d5a42ce321e6f [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
Sene Gales1673035f2015-09-30 14:41:29 +010020#include <unordered_map>
21
Chris Craikc3566d02013-02-04 16:16:33 -080022#include <utils/Errors.h>
Chris Craikc1c5f082013-09-11 16:23:37 -070023#include <utils/LinearAllocator.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
John Reck272a6852015-07-29 16:48:58 -070029#include <vector>
30
Chris Craik527a3aa2013-03-04 10:19:31 -080031class SkBitmap;
Chris Craikc3566d02013-02-04 16:16:33 -080032
33namespace android {
34namespace uirenderer {
35
Chris Craikff785832013-03-08 13:12:16 -080036class ClipOp;
Chris Craikc3566d02013-02-04 16:16:33 -080037class DrawOp;
Chris Craikff785832013-03-08 13:12:16 -080038class SaveOp;
39class SaveLayerOp;
40class StateOp;
Chris Craikc1c5f082013-09-11 16:23:37 -070041
42class DeferredDisplayState;
Chris Craikc3566d02013-02-04 16:16:33 -080043
Chris Craik527a3aa2013-03-04 10:19:31 -080044class Batch;
45class DrawBatch;
46class MergingDrawBatch;
47
Romain Guy7f6d6b02013-08-06 13:49:28 -070048typedef const void* mergeid_t;
Chris Craik527a3aa2013-03-04 10:19:31 -080049
Chris Craikc1c5f082013-09-11 16:23:37 -070050class DeferredDisplayState {
51public:
Chris Craikb565df12015-10-05 13:00:52 -070052 static void* operator new(size_t size) = delete;
Chris Craikc1c5f082013-09-11 16:23:37 -070053 static void* operator new(size_t size, LinearAllocator& allocator) {
54 return allocator.alloc(size);
55 }
56
57 // global op bounds, mapped by mMatrix to be in screen space coordinates, clipped
58 Rect mBounds;
59
60 // the below are set and used by the OpenGLRenderer at record and deferred playback
61 bool mClipValid;
62 Rect mClip;
63 int mClipSideFlags; // specifies which sides of the bounds are clipped, unclipped if cleared
Chris Craikc1c5f082013-09-11 16:23:37 -070064 mat4 mMatrix;
Chris Craikc1c5f082013-09-11 16:23:37 -070065 float mAlpha;
Chris Craikdeeda3d2014-05-05 19:09:33 -070066 const RoundRectClipState* mRoundRectClipState;
Chris Craikfca52b752015-04-28 11:45:59 -070067 const ProjectionPathMask* mProjectionPathMask;
Chris Craikc1c5f082013-09-11 16:23:37 -070068};
69
70class OpStatePair {
71public:
72 OpStatePair()
Chris Craike84a2082014-12-22 14:28:49 -080073 : op(nullptr), state(nullptr) {}
Chris Craikc1c5f082013-09-11 16:23:37 -070074 OpStatePair(DrawOp* newOp, const DeferredDisplayState* newState)
75 : op(newOp), state(newState) {}
76 OpStatePair(const OpStatePair& other)
77 : op(other.op), state(other.state) {}
78 DrawOp* op;
79 const DeferredDisplayState* state;
80};
81
Chris Craikc3566d02013-02-04 16:16:33 -080082class DeferredDisplayList {
Andreas Gampeedaecc12014-11-10 20:54:07 -080083 friend struct DeferStateStruct; // used to give access to allocator
Chris Craikc3566d02013-02-04 16:16:33 -080084public:
Chris Craikb45c6aa2015-09-28 15:41:27 -070085 DeferredDisplayList(const Rect& bounds)
86 : mBounds(bounds) {
Chris Craik28ce94a2013-05-31 11:38:03 -070087 clear();
88 }
Chris Craikc3566d02013-02-04 16:16:33 -080089 ~DeferredDisplayList() { clear(); }
90
91 enum OpBatchId {
Chris Craik527a3aa2013-03-04 10:19:31 -080092 kOpBatch_None = 0, // Don't batch
Chris Craikc3566d02013-02-04 16:16:33 -080093 kOpBatch_Bitmap,
94 kOpBatch_Patch,
95 kOpBatch_AlphaVertices,
96 kOpBatch_Vertices,
97 kOpBatch_AlphaMaskTexture,
98 kOpBatch_Text,
99 kOpBatch_ColorText,
100
101 kOpBatch_Count, // Add other batch ids before this
102 };
103
John Reck272a6852015-07-29 16:48:58 -0700104 bool isEmpty() { return mBatches.empty(); }
Chris Craikc3566d02013-02-04 16:16:33 -0800105
106 /**
107 * Plays back all of the draw ops recorded into batches to the renderer.
108 * Adjusts the state of the renderer as necessary, and restores it when complete
109 */
Tom Hudson107843d2014-09-08 11:26:26 -0400110 void flush(OpenGLRenderer& renderer, Rect& dirty);
Chris Craikff785832013-03-08 13:12:16 -0800111
112 void addClip(OpenGLRenderer& renderer, ClipOp* op);
113 void addSaveLayer(OpenGLRenderer& renderer, SaveLayerOp* op, int newSaveCount);
114 void addSave(OpenGLRenderer& renderer, SaveOp* op, int newSaveCount);
Chris Craik7273daa2013-03-28 11:25:24 -0700115 void addRestoreToCount(OpenGLRenderer& renderer, StateOp* op, int newSaveCount);
Chris Craikc3566d02013-02-04 16:16:33 -0800116
117 /**
118 * Add a draw op into the DeferredDisplayList, reordering as needed (for performance) if
Chris Craik5e49b302013-07-30 19:05:20 -0700119 * disallowReorder is false, respecting draw order when overlaps occur.
Chris Craikc3566d02013-02-04 16:16:33 -0800120 */
Chris Craikff785832013-03-08 13:12:16 -0800121 void addDrawOp(OpenGLRenderer& renderer, DrawOp* op);
Chris Craikc3566d02013-02-04 16:16:33 -0800122
123private:
Chris Craikf57776b2013-10-25 18:30:17 -0700124 DeferredDisplayList(const DeferredDisplayList& other); // disallow copy
125
Chris Craikc1c5f082013-09-11 16:23:37 -0700126 DeferredDisplayState* createState() {
127 return new (mAllocator) DeferredDisplayState();
128 }
129
130 void tryRecycleState(DeferredDisplayState* state) {
John Reckb5bc4542015-04-23 15:51:55 -0700131 mAllocator.rewindIfLastAlloc(state);
Chris Craikc1c5f082013-09-11 16:23:37 -0700132 }
133
Chris Craikd90144d2013-03-19 15:03:48 -0700134 /**
Chris Craikff785832013-03-08 13:12:16 -0800135 * Resets the batching back-pointers, creating a barrier in the operation stream so that no ops
136 * added in the future will be inserted into a batch that already exist.
137 */
138 void resetBatchingState();
139
Chris Craik1206b9b2013-04-04 14:46:24 -0700140 void clear();
141
Chris Craikff785832013-03-08 13:12:16 -0800142 void storeStateOpBarrier(OpenGLRenderer& renderer, StateOp* op);
Chris Craik7273daa2013-03-28 11:25:24 -0700143 void storeRestoreToCountBarrier(OpenGLRenderer& renderer, StateOp* op, int newSaveCount);
Chris Craikff785832013-03-08 13:12:16 -0800144
145 bool recordingComplexClip() const { return mComplexClipStackStart >= 0; }
146
147 int getStateOpDeferFlags() const;
148 int getDrawOpDeferFlags() const;
149
Chris Craikf70119c2013-06-13 11:21:22 -0700150 void discardDrawingBatches(const unsigned int maxIndex);
Chris Craik28ce94a2013-05-31 11:38:03 -0700151
152 // layer space bounds of rendering
153 Rect mBounds;
Chris Craik28ce94a2013-05-31 11:38:03 -0700154
Chris Craikd90144d2013-03-19 15:03:48 -0700155 /**
156 * At defer time, stores the *defer time* savecount of save/saveLayer ops that were deferred, so
157 * that when an associated restoreToCount is deferred, it can be recorded as a
158 * RestoreToCountBatch
Chris Craikff785832013-03-08 13:12:16 -0800159 */
John Reck272a6852015-07-29 16:48:58 -0700160 std::vector<int> mSaveStack;
Chris Craikff785832013-03-08 13:12:16 -0800161 int mComplexClipStackStart;
Chris Craikc3566d02013-02-04 16:16:33 -0800162
John Reck272a6852015-07-29 16:48:58 -0700163 std::vector<Batch*> mBatches;
Chris Craik527a3aa2013-03-04 10:19:31 -0800164
165 // Maps batch ids to the most recent *non-merging* batch of that id
166 Batch* mBatchLookup[kOpBatch_Count];
167
168 // Points to the index after the most recent barrier
169 int mEarliestBatchIndex;
170
Chris Craik28ce94a2013-05-31 11:38:03 -0700171 // Points to the first index that may contain a pure drawing batch
172 int mEarliestUnclearedIndex;
173
Chris Craik527a3aa2013-03-04 10:19:31 -0800174 /**
175 * Maps the mergeid_t returned by an op's getMergeId() to the most recently seen
176 * MergingDrawBatch of that id. These ids are unique per draw type and guaranteed to not
177 * collide, which avoids the need to resolve mergeid collisions.
178 */
Sene Gales1673035f2015-09-30 14:41:29 +0100179 std::unordered_map<mergeid_t, DrawBatch*> mMergingBatches[kOpBatch_Count];
Chris Craikc1c5f082013-09-11 16:23:37 -0700180
181 LinearAllocator mAllocator;
Chris Craikc3566d02013-02-04 16:16:33 -0800182};
183
Chris Craik28ce94a2013-05-31 11:38:03 -0700184/**
185 * Struct containing information that instructs the defer
186 */
187struct DeferInfo {
188public:
189 DeferInfo() :
190 batchId(DeferredDisplayList::kOpBatch_None),
191 mergeId((mergeid_t) -1),
192 mergeable(false),
193 opaqueOverBounds(false) {
194 };
195
196 int batchId;
197 mergeid_t mergeId;
198 bool mergeable;
199 bool opaqueOverBounds; // opaque over bounds in DeferredDisplayState - can skip ops below
200};
201
Chris Craikc3566d02013-02-04 16:16:33 -0800202}; // namespace uirenderer
203}; // namespace android
204
205#endif // ANDROID_HWUI_DEFERRED_DISPLAY_LIST_H