blob: f678bfd94b6315910d677a06ae0187399e695863 [file] [log] [blame]
Chris Craik2af46352012-11-26 18:30:17 -08001/*
Romain Guy7031ff62013-02-22 11:48:16 -08002 * Copyright (C) 2013 The Android Open Source Project
Chris Craik2af46352012-11-26 18:30:17 -08003 *
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_DISPLAY_OPERATION_H
18#define ANDROID_HWUI_DISPLAY_OPERATION_H
19
Romain Guy7031ff62013-02-22 11:48:16 -080020#ifndef LOG_TAG
21 #define LOG_TAG "OpenGLRenderer"
22#endif
23
Chris Craik2af46352012-11-26 18:30:17 -080024#include <SkXfermode.h>
25
Chris Craik0776a602013-02-14 15:36:01 -080026#include <private/hwui/DrawGlInfo.h>
27
Chris Craik2af46352012-11-26 18:30:17 -080028#include "OpenGLRenderer.h"
Romain Guy3b748a42013-04-17 18:54:38 -070029#include "AssetAtlas.h"
Chris Craikc3566d02013-02-04 16:16:33 -080030#include "DeferredDisplayList.h"
Chris Craik2af46352012-11-26 18:30:17 -080031#include "DisplayListRenderer.h"
Romain Guy3b748a42013-04-17 18:54:38 -070032#include "UvMapper.h"
Chris Craik2af46352012-11-26 18:30:17 -080033#include "utils/LinearAllocator.h"
34
35#define CRASH() do { \
Romain Guy5216c3b2013-06-14 16:31:37 -070036 *(int *)(uintptr_t) 0xbbadbeef = 0; \
Chris Craik2af46352012-11-26 18:30:17 -080037 ((void(*)())0)(); /* More reliable, but doesn't say BBADBEEF */ \
38} while(false)
39
Chris Craik2af46352012-11-26 18:30:17 -080040// Use OP_LOG for logging with arglist, OP_LOGS if just printing char*
Chris Craik28ce94a2013-05-31 11:38:03 -070041#define OP_LOGS(s) OP_LOG("%s", (s))
Chris Craik3dc553b2013-02-04 12:45:13 -080042#define OP_LOG(s, ...) ALOGD( "%*s" s, level * 2, "", __VA_ARGS__ )
Chris Craik2af46352012-11-26 18:30:17 -080043
Chris Craik2af46352012-11-26 18:30:17 -080044namespace android {
45namespace uirenderer {
46
47/**
48 * Structure for storing canvas operations when they are recorded into a DisplayList, so that they
49 * may be replayed to an OpenGLRenderer.
50 *
51 * To avoid individual memory allocations, DisplayListOps may only be allocated into a
52 * LinearAllocator's managed memory buffers. Each pointer held by a DisplayListOp is either a
53 * pointer into memory also allocated in the LinearAllocator (mostly for text and float buffers) or
54 * references a externally refcounted object (Sk... and Skia... objects). ~DisplayListOp() is
55 * never called as LinearAllocators are simply discarded, so no memory management should be done in
56 * this class.
57 */
58class DisplayListOp {
59public:
60 // These objects should always be allocated with a LinearAllocator, and never destroyed/deleted.
61 // standard new() intentionally not implemented, and delete/deconstructor should never be used.
62 virtual ~DisplayListOp() { CRASH(); }
63 static void operator delete(void* ptr) { CRASH(); }
64 /** static void* operator new(size_t size); PURPOSELY OMITTED **/
65 static void* operator new(size_t size, LinearAllocator& allocator) {
66 return allocator.alloc(size);
67 }
68
69 enum OpLogFlag {
70 kOpLogFlag_Recurse = 0x1,
71 kOpLogFlag_JSON = 0x2 // TODO: add?
72 };
73
Chet Haasedd671592013-04-19 14:54:34 -070074 virtual void defer(DeferStateStruct& deferStruct, int saveCount, int level,
75 bool useQuickReject) = 0;
Chris Craikc3566d02013-02-04 16:16:33 -080076
Chet Haasedd671592013-04-19 14:54:34 -070077 virtual void replay(ReplayStateStruct& replayStruct, int saveCount, int level,
78 bool useQuickReject) = 0;
Chris Craikff785832013-03-08 13:12:16 -080079
80 virtual void output(int level, uint32_t logFlags = 0) = 0;
Chris Craik2af46352012-11-26 18:30:17 -080081
82 // NOTE: it would be nice to declare constants and overriding the implementation in each op to
83 // point at the constants, but that seems to require a .cpp file
84 virtual const char* name() = 0;
Chris Craikff785832013-03-08 13:12:16 -080085
86 /**
87 * Stores the relevant canvas state of the object between deferral and replay (if the canvas
88 * state supports being stored) See OpenGLRenderer::simpleClipAndState()
89 *
90 * TODO: don't reserve space for StateOps that won't be deferred
91 */
92 DeferredDisplayState state;
93
Chris Craik2af46352012-11-26 18:30:17 -080094};
95
96class StateOp : public DisplayListOp {
97public:
98 StateOp() {};
99
100 virtual ~StateOp() {}
101
Chet Haasedd671592013-04-19 14:54:34 -0700102 virtual void defer(DeferStateStruct& deferStruct, int saveCount, int level,
103 bool useQuickReject) {
Chris Craikff785832013-03-08 13:12:16 -0800104 // default behavior only affects immediate, deferrable state, issue directly to renderer
105 applyState(deferStruct.mRenderer, saveCount);
106 }
107
Chris Craikc3566d02013-02-04 16:16:33 -0800108 /**
109 * State operations are applied directly to the renderer, but can cause the deferred drawing op
110 * list to flush
111 */
Chet Haasedd671592013-04-19 14:54:34 -0700112 virtual void replay(ReplayStateStruct& replayStruct, int saveCount, int level,
113 bool useQuickReject) {
Chris Craikff785832013-03-08 13:12:16 -0800114 applyState(replayStruct.mRenderer, saveCount);
Chris Craikc3566d02013-02-04 16:16:33 -0800115 }
116
Chris Craik7273daa2013-03-28 11:25:24 -0700117 virtual void applyState(OpenGLRenderer& renderer, int saveCount) const = 0;
Chris Craik2af46352012-11-26 18:30:17 -0800118};
119
120class DrawOp : public DisplayListOp {
Chris Craik527a3aa2013-03-04 10:19:31 -0800121friend class MergingDrawBatch;
Chris Craik2af46352012-11-26 18:30:17 -0800122public:
123 DrawOp(SkPaint* paint)
124 : mPaint(paint), mQuickRejected(false) {}
125
Chet Haasedd671592013-04-19 14:54:34 -0700126 virtual void defer(DeferStateStruct& deferStruct, int saveCount, int level,
127 bool useQuickReject) {
128 if (mQuickRejected && CC_LIKELY(useQuickReject)) {
Chris Craikff785832013-03-08 13:12:16 -0800129 return;
Chris Craikc3566d02013-02-04 16:16:33 -0800130 }
131
Chris Craikd72b73c2013-06-17 13:52:06 -0700132 if (getLocalBounds(state.mBounds)) {
133 // valid empty bounds, don't bother deferring
134 if (state.mBounds.isEmpty()) return;
135 } else {
Chris Craikc3566d02013-02-04 16:16:33 -0800136 // empty bounds signify bounds can't be calculated
137 state.mBounds.setEmpty();
138 }
139
Chris Craikff785832013-03-08 13:12:16 -0800140 deferStruct.mDeferredList.addDrawOp(deferStruct.mRenderer, this);
Chris Craikc3566d02013-02-04 16:16:33 -0800141 }
142
Chet Haasedd671592013-04-19 14:54:34 -0700143 virtual void replay(ReplayStateStruct& replayStruct, int saveCount, int level,
144 bool useQuickReject) {
145 if (mQuickRejected && CC_LIKELY(useQuickReject)) {
Chris Craikff785832013-03-08 13:12:16 -0800146 return;
147 }
148
Chris Craik527a3aa2013-03-04 10:19:31 -0800149 replayStruct.mDrawGlStatus |= applyDraw(replayStruct.mRenderer, replayStruct.mDirty);
Chris Craikff785832013-03-08 13:12:16 -0800150 }
151
Chris Craik527a3aa2013-03-04 10:19:31 -0800152 virtual status_t applyDraw(OpenGLRenderer& renderer, Rect& dirty) = 0;
Chris Craik2af46352012-11-26 18:30:17 -0800153
Chris Craik527a3aa2013-03-04 10:19:31 -0800154 /**
155 * Draw multiple instances of an operation, must be overidden for operations that merge
156 *
157 * Currently guarantees certain similarities between ops (see MergingDrawBatch::canMergeWith),
158 * and pure translation transformations. Other guarantees of similarity should be enforced by
159 * reducing which operations are tagged as mergeable.
160 */
161 virtual status_t multiDraw(OpenGLRenderer& renderer, Rect& dirty,
162 const Vector<DrawOp*>& ops, const Rect& bounds) {
163 status_t status = DrawGlInfo::kStatusDone;
164 for (unsigned int i = 0; i < ops.size(); i++) {
Chris Craik28ce94a2013-05-31 11:38:03 -0700165 renderer.restoreDisplayState(ops[i]->state, true);
Chris Craik527a3aa2013-03-04 10:19:31 -0800166 status |= ops[i]->applyDraw(renderer, dirty);
167 }
168 return status;
169 }
170
Chris Craik28ce94a2013-05-31 11:38:03 -0700171 /**
Chris Craik527a3aa2013-03-04 10:19:31 -0800172 * When this method is invoked the state field is initialized to have the
173 * final rendering state. We can thus use it to process data as it will be
174 * used at draw time.
175 *
176 * Additionally, this method allows subclasses to provide defer-time preferences for batching
177 * and merging.
178 *
Chris Craik28ce94a2013-05-31 11:38:03 -0700179 * if a subclass can set deferInfo.mergeable to true, it should implement multiDraw()
Chris Craik527a3aa2013-03-04 10:19:31 -0800180 */
Chris Craik28ce94a2013-05-31 11:38:03 -0700181 virtual void onDefer(OpenGLRenderer& renderer, DeferInfo& deferInfo) {}
Romain Guy0f667532013-03-01 14:31:04 -0800182
Chris Craik2af46352012-11-26 18:30:17 -0800183 // returns true if bounds exist
184 virtual bool getLocalBounds(Rect& localBounds) { return false; }
185
186 // TODO: better refine localbounds usage
187 void setQuickRejected(bool quickRejected) { mQuickRejected = quickRejected; }
188 bool getQuickRejected() { return mQuickRejected; }
189
Chris Craik527a3aa2013-03-04 10:19:31 -0800190 inline int getPaintAlpha() {
191 return OpenGLRenderer::getAlphaDirect(mPaint);
Chris Craikc3566d02013-02-04 16:16:33 -0800192 }
193
Chris Craik527a3aa2013-03-04 10:19:31 -0800194 inline float strokeWidthOutset() {
Chris Craike7c69c62013-04-03 09:55:48 -0700195 float width = mPaint->getStrokeWidth();
196 if (width == 0) return 0.5f; // account for hairline
197 return width * 0.5f;
198 }
Chris Craikc3566d02013-02-04 16:16:33 -0800199
Chris Craik2af46352012-11-26 18:30:17 -0800200protected:
Chris Craika08f95c2013-03-15 17:24:33 -0700201 SkPaint* getPaint(OpenGLRenderer& renderer) {
202 return renderer.filterPaint(mPaint);
Chris Craik2af46352012-11-26 18:30:17 -0800203 }
204
Chris Craik28ce94a2013-05-31 11:38:03 -0700205 // Helper method for determining op opaqueness. Assumes op fills its bounds in local
206 // coordinates, and that paint's alpha is used
207 inline bool isOpaqueOverBounds() {
208 // ensure that local bounds cover mapped bounds
209 if (!state.mMatrix.isSimple()) return false;
210
211 // check state/paint for transparency
212 if (state.mDrawModifiers.mShader ||
213 state.mAlpha != 1.0f ||
214 (mPaint && mPaint->getAlpha() != 0xFF)) return false;
215
216 SkXfermode::Mode mode = OpenGLRenderer::getXfermodeDirect(mPaint);
217 return (mode == SkXfermode::kSrcOver_Mode ||
218 mode == SkXfermode::kSrc_Mode);
219
220 }
221
Chris Craik2af46352012-11-26 18:30:17 -0800222 SkPaint* mPaint; // should be accessed via getPaint() when applying
223 bool mQuickRejected;
224};
225
226class DrawBoundedOp : public DrawOp {
227public:
228 DrawBoundedOp(float left, float top, float right, float bottom, SkPaint* paint)
229 : DrawOp(paint), mLocalBounds(left, top, right, bottom) {}
230
Chris Craik41541822013-05-03 16:35:54 -0700231 DrawBoundedOp(const Rect& localBounds, SkPaint* paint)
232 : DrawOp(paint), mLocalBounds(localBounds) {}
233
Chris Craik5d116762013-02-19 17:49:31 -0800234 // Calculates bounds as smallest rect encompassing all points
235 // NOTE: requires at least 1 vertex, and doesn't account for stroke size (should be handled in
236 // subclass' constructor)
237 DrawBoundedOp(const float* points, int count, SkPaint* paint)
238 : DrawOp(paint), mLocalBounds(points[0], points[1], points[0], points[1]) {
239 for (int i = 2; i < count; i += 2) {
240 mLocalBounds.left = fminf(mLocalBounds.left, points[i]);
241 mLocalBounds.right = fmaxf(mLocalBounds.right, points[i]);
242 mLocalBounds.top = fminf(mLocalBounds.top, points[i + 1]);
243 mLocalBounds.bottom = fmaxf(mLocalBounds.bottom, points[i + 1]);
244 }
245 }
246
247 // default empty constructor for bounds, to be overridden in child constructor body
Chris Craik2af46352012-11-26 18:30:17 -0800248 DrawBoundedOp(SkPaint* paint)
249 : DrawOp(paint) {}
250
251 bool getLocalBounds(Rect& localBounds) {
252 localBounds.set(mLocalBounds);
253 return true;
254 }
255
256protected:
257 Rect mLocalBounds; // displayed area in LOCAL coord. doesn't incorporate stroke, so check paint
258};
259
260///////////////////////////////////////////////////////////////////////////////
261// STATE OPERATIONS - these may affect the state of the canvas/renderer, but do
262// not directly draw or alter output
263///////////////////////////////////////////////////////////////////////////////
264
265class SaveOp : public StateOp {
Chris Craikff785832013-03-08 13:12:16 -0800266 friend class DisplayList; // give DisplayList private constructor/reinit access
Chris Craik2af46352012-11-26 18:30:17 -0800267public:
268 SaveOp(int flags)
269 : mFlags(flags) {}
270
Chet Haasedd671592013-04-19 14:54:34 -0700271 virtual void defer(DeferStateStruct& deferStruct, int saveCount, int level,
272 bool useQuickReject) {
Chris Craikff785832013-03-08 13:12:16 -0800273 int newSaveCount = deferStruct.mRenderer.save(mFlags);
274 deferStruct.mDeferredList.addSave(deferStruct.mRenderer, this, newSaveCount);
275 }
276
Chris Craik7273daa2013-03-28 11:25:24 -0700277 virtual void applyState(OpenGLRenderer& renderer, int saveCount) const {
Chris Craik2af46352012-11-26 18:30:17 -0800278 renderer.save(mFlags);
279 }
280
Chris Craikff785832013-03-08 13:12:16 -0800281 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800282 OP_LOG("Save flags %x", mFlags);
283 }
284
285 virtual const char* name() { return "Save"; }
286
Chris Craikff785832013-03-08 13:12:16 -0800287 int getFlags() const { return mFlags; }
Chris Craik2af46352012-11-26 18:30:17 -0800288private:
Chris Craikff785832013-03-08 13:12:16 -0800289 SaveOp() {}
290 DisplayListOp* reinit(int flags) {
291 mFlags = flags;
292 return this;
293 }
294
Chris Craik2af46352012-11-26 18:30:17 -0800295 int mFlags;
296};
297
298class RestoreToCountOp : public StateOp {
Chris Craikff785832013-03-08 13:12:16 -0800299 friend class DisplayList; // give DisplayList private constructor/reinit access
Chris Craik2af46352012-11-26 18:30:17 -0800300public:
301 RestoreToCountOp(int count)
302 : mCount(count) {}
303
Chet Haasedd671592013-04-19 14:54:34 -0700304 virtual void defer(DeferStateStruct& deferStruct, int saveCount, int level,
305 bool useQuickReject) {
Chris Craik7273daa2013-03-28 11:25:24 -0700306 deferStruct.mDeferredList.addRestoreToCount(deferStruct.mRenderer,
307 this, saveCount + mCount);
Chris Craikff785832013-03-08 13:12:16 -0800308 deferStruct.mRenderer.restoreToCount(saveCount + mCount);
Chris Craik2af46352012-11-26 18:30:17 -0800309 }
310
Chris Craik7273daa2013-03-28 11:25:24 -0700311 virtual void applyState(OpenGLRenderer& renderer, int saveCount) const {
Chris Craikff785832013-03-08 13:12:16 -0800312 renderer.restoreToCount(saveCount + mCount);
313 }
314
315 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800316 OP_LOG("Restore to count %d", mCount);
317 }
318
319 virtual const char* name() { return "RestoreToCount"; }
320
321private:
Chris Craikff785832013-03-08 13:12:16 -0800322 RestoreToCountOp() {}
323 DisplayListOp* reinit(int count) {
324 mCount = count;
325 return this;
326 }
327
Chris Craik2af46352012-11-26 18:30:17 -0800328 int mCount;
329};
330
331class SaveLayerOp : public StateOp {
Chris Craikff785832013-03-08 13:12:16 -0800332 friend class DisplayList; // give DisplayList private constructor/reinit access
Chris Craik2af46352012-11-26 18:30:17 -0800333public:
Chris Craikff785832013-03-08 13:12:16 -0800334 SaveLayerOp(float left, float top, float right, float bottom,
335 int alpha, SkXfermode::Mode mode, int flags)
336 : mArea(left, top, right, bottom), mAlpha(alpha), mMode(mode), mFlags(flags) {}
337
Chet Haasedd671592013-04-19 14:54:34 -0700338 virtual void defer(DeferStateStruct& deferStruct, int saveCount, int level,
339 bool useQuickReject) {
Chris Craikff785832013-03-08 13:12:16 -0800340 // NOTE: don't bother with actual saveLayer, instead issuing it at flush time
Chris Craikd90144d2013-03-19 15:03:48 -0700341 int newSaveCount = deferStruct.mRenderer.getSaveCount();
Chris Craikff785832013-03-08 13:12:16 -0800342 deferStruct.mDeferredList.addSaveLayer(deferStruct.mRenderer, this, newSaveCount);
Chris Craikd90144d2013-03-19 15:03:48 -0700343
344 // NOTE: don't issue full saveLayer, since that has side effects/is costly. instead just
345 // setup the snapshot for deferral, and re-issue the op at flush time
346 deferStruct.mRenderer.saveLayerDeferred(mArea.left, mArea.top, mArea.right, mArea.bottom,
347 mAlpha, mMode, mFlags);
Chris Craikff785832013-03-08 13:12:16 -0800348 }
Chris Craik2af46352012-11-26 18:30:17 -0800349
Chris Craik7273daa2013-03-28 11:25:24 -0700350 virtual void applyState(OpenGLRenderer& renderer, int saveCount) const {
Chris Craikff785832013-03-08 13:12:16 -0800351 renderer.saveLayer(mArea.left, mArea.top, mArea.right, mArea.bottom, mAlpha, mMode, mFlags);
Chris Craik2af46352012-11-26 18:30:17 -0800352 }
353
Chris Craikff785832013-03-08 13:12:16 -0800354 virtual void output(int level, uint32_t logFlags) {
355 OP_LOG("SaveLayer%s of area " RECT_STRING,
356 (isSaveLayerAlpha() ? "Alpha" : ""),RECT_ARGS(mArea));
Chris Craik2af46352012-11-26 18:30:17 -0800357 }
358
Chris Craikff785832013-03-08 13:12:16 -0800359 virtual const char* name() { return isSaveLayerAlpha() ? "SaveLayerAlpha" : "SaveLayer"; }
360
361 int getFlags() { return mFlags; }
Chris Craik2af46352012-11-26 18:30:17 -0800362
363private:
Chris Craikff785832013-03-08 13:12:16 -0800364 // Special case, reserved for direct DisplayList usage
365 SaveLayerOp() {}
366 DisplayListOp* reinit(float left, float top, float right, float bottom,
367 int alpha, SkXfermode::Mode mode, int flags) {
368 mArea.set(left, top, right, bottom);
369 mAlpha = alpha;
370 mMode = mode;
371 mFlags = flags;
372 return this;
Chris Craik2af46352012-11-26 18:30:17 -0800373 }
374
Chris Craikff785832013-03-08 13:12:16 -0800375 bool isSaveLayerAlpha() { return mAlpha < 255 && mMode == SkXfermode::kSrcOver_Mode; }
Chris Craik2af46352012-11-26 18:30:17 -0800376 Rect mArea;
377 int mAlpha;
Chris Craikff785832013-03-08 13:12:16 -0800378 SkXfermode::Mode mMode;
Chris Craik2af46352012-11-26 18:30:17 -0800379 int mFlags;
380};
381
382class TranslateOp : public StateOp {
383public:
384 TranslateOp(float dx, float dy)
385 : mDx(dx), mDy(dy) {}
386
Chris Craik7273daa2013-03-28 11:25:24 -0700387 virtual void applyState(OpenGLRenderer& renderer, int saveCount) const {
Chris Craik2af46352012-11-26 18:30:17 -0800388 renderer.translate(mDx, mDy);
389 }
390
Chris Craikff785832013-03-08 13:12:16 -0800391 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800392 OP_LOG("Translate by %f %f", mDx, mDy);
393 }
394
395 virtual const char* name() { return "Translate"; }
396
397private:
398 float mDx;
399 float mDy;
400};
401
402class RotateOp : public StateOp {
403public:
404 RotateOp(float degrees)
405 : mDegrees(degrees) {}
406
Chris Craik7273daa2013-03-28 11:25:24 -0700407 virtual void applyState(OpenGLRenderer& renderer, int saveCount) const {
Chris Craik2af46352012-11-26 18:30:17 -0800408 renderer.rotate(mDegrees);
409 }
410
Chris Craikff785832013-03-08 13:12:16 -0800411 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800412 OP_LOG("Rotate by %f degrees", mDegrees);
413 }
414
415 virtual const char* name() { return "Rotate"; }
416
417private:
418 float mDegrees;
419};
420
421class ScaleOp : public StateOp {
422public:
423 ScaleOp(float sx, float sy)
424 : mSx(sx), mSy(sy) {}
425
Chris Craik7273daa2013-03-28 11:25:24 -0700426 virtual void applyState(OpenGLRenderer& renderer, int saveCount) const {
Chris Craik2af46352012-11-26 18:30:17 -0800427 renderer.scale(mSx, mSy);
428 }
429
Chris Craikff785832013-03-08 13:12:16 -0800430 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800431 OP_LOG("Scale by %f %f", mSx, mSy);
432 }
433
434 virtual const char* name() { return "Scale"; }
435
436private:
437 float mSx;
438 float mSy;
439};
440
441class SkewOp : public StateOp {
442public:
443 SkewOp(float sx, float sy)
444 : mSx(sx), mSy(sy) {}
445
Chris Craik7273daa2013-03-28 11:25:24 -0700446 virtual void applyState(OpenGLRenderer& renderer, int saveCount) const {
Chris Craik2af46352012-11-26 18:30:17 -0800447 renderer.skew(mSx, mSy);
448 }
449
Chris Craikff785832013-03-08 13:12:16 -0800450 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800451 OP_LOG("Skew by %f %f", mSx, mSy);
452 }
453
454 virtual const char* name() { return "Skew"; }
455
456private:
457 float mSx;
458 float mSy;
459};
460
461class SetMatrixOp : public StateOp {
462public:
463 SetMatrixOp(SkMatrix* matrix)
464 : mMatrix(matrix) {}
465
Chris Craik7273daa2013-03-28 11:25:24 -0700466 virtual void applyState(OpenGLRenderer& renderer, int saveCount) const {
Chris Craik2af46352012-11-26 18:30:17 -0800467 renderer.setMatrix(mMatrix);
468 }
469
Chris Craikff785832013-03-08 13:12:16 -0800470 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800471 OP_LOG("SetMatrix " MATRIX_STRING, MATRIX_ARGS(mMatrix));
472 }
473
474 virtual const char* name() { return "SetMatrix"; }
475
476private:
477 SkMatrix* mMatrix;
478};
479
480class ConcatMatrixOp : public StateOp {
481public:
482 ConcatMatrixOp(SkMatrix* matrix)
483 : mMatrix(matrix) {}
484
Chris Craik7273daa2013-03-28 11:25:24 -0700485 virtual void applyState(OpenGLRenderer& renderer, int saveCount) const {
Chris Craik2af46352012-11-26 18:30:17 -0800486 renderer.concatMatrix(mMatrix);
487 }
488
Chris Craikff785832013-03-08 13:12:16 -0800489 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800490 OP_LOG("ConcatMatrix " MATRIX_STRING, MATRIX_ARGS(mMatrix));
491 }
492
493 virtual const char* name() { return "ConcatMatrix"; }
494
495private:
496 SkMatrix* mMatrix;
497};
498
Chris Craikff785832013-03-08 13:12:16 -0800499class ClipOp : public StateOp {
500public:
501 ClipOp(SkRegion::Op op) : mOp(op) {}
502
Chet Haasedd671592013-04-19 14:54:34 -0700503 virtual void defer(DeferStateStruct& deferStruct, int saveCount, int level,
504 bool useQuickReject) {
Chris Craikff785832013-03-08 13:12:16 -0800505 // NOTE: must defer op BEFORE applying state, since it may read clip
506 deferStruct.mDeferredList.addClip(deferStruct.mRenderer, this);
507
508 // TODO: Can we avoid applying complex clips at defer time?
509 applyState(deferStruct.mRenderer, saveCount);
510 }
511
512 bool canCauseComplexClip() {
513 return ((mOp != SkRegion::kIntersect_Op) && (mOp != SkRegion::kReplace_Op)) || !isRect();
514 }
515
516protected:
517 ClipOp() {}
518 virtual bool isRect() { return false; }
519
520 SkRegion::Op mOp;
521};
522
523class ClipRectOp : public ClipOp {
524 friend class DisplayList; // give DisplayList private constructor/reinit access
Chris Craik2af46352012-11-26 18:30:17 -0800525public:
526 ClipRectOp(float left, float top, float right, float bottom, SkRegion::Op op)
Chris Craikff785832013-03-08 13:12:16 -0800527 : ClipOp(op), mArea(left, top, right, bottom) {}
Chris Craik2af46352012-11-26 18:30:17 -0800528
Chris Craik7273daa2013-03-28 11:25:24 -0700529 virtual void applyState(OpenGLRenderer& renderer, int saveCount) const {
Chris Craik2af46352012-11-26 18:30:17 -0800530 renderer.clipRect(mArea.left, mArea.top, mArea.right, mArea.bottom, mOp);
531 }
532
Chris Craikff785832013-03-08 13:12:16 -0800533 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800534 OP_LOG("ClipRect " RECT_STRING, RECT_ARGS(mArea));
535 }
536
537 virtual const char* name() { return "ClipRect"; }
538
Chris Craikff785832013-03-08 13:12:16 -0800539protected:
540 virtual bool isRect() { return true; }
Chris Craikb98a0162013-02-21 11:30:22 -0800541
Chris Craik2af46352012-11-26 18:30:17 -0800542private:
Chris Craikff785832013-03-08 13:12:16 -0800543 ClipRectOp() {}
544 DisplayListOp* reinit(float left, float top, float right, float bottom, SkRegion::Op op) {
545 mOp = op;
546 mArea.set(left, top, right, bottom);
547 return this;
Chris Craikb98a0162013-02-21 11:30:22 -0800548 }
Chris Craikff785832013-03-08 13:12:16 -0800549
Chris Craik2af46352012-11-26 18:30:17 -0800550 Rect mArea;
Chris Craik2af46352012-11-26 18:30:17 -0800551};
552
Chris Craikff785832013-03-08 13:12:16 -0800553class ClipPathOp : public ClipOp {
Chris Craik2af46352012-11-26 18:30:17 -0800554public:
555 ClipPathOp(SkPath* path, SkRegion::Op op)
Chris Craikff785832013-03-08 13:12:16 -0800556 : ClipOp(op), mPath(path) {}
Chris Craik2af46352012-11-26 18:30:17 -0800557
Chris Craik7273daa2013-03-28 11:25:24 -0700558 virtual void applyState(OpenGLRenderer& renderer, int saveCount) const {
Chris Craik2af46352012-11-26 18:30:17 -0800559 renderer.clipPath(mPath, mOp);
560 }
561
Chris Craikff785832013-03-08 13:12:16 -0800562 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800563 SkRect bounds = mPath->getBounds();
564 OP_LOG("ClipPath bounds " RECT_STRING,
565 bounds.left(), bounds.top(), bounds.right(), bounds.bottom());
566 }
567
568 virtual const char* name() { return "ClipPath"; }
569
570private:
571 SkPath* mPath;
Chris Craik2af46352012-11-26 18:30:17 -0800572};
573
Chris Craikff785832013-03-08 13:12:16 -0800574class ClipRegionOp : public ClipOp {
Chris Craik2af46352012-11-26 18:30:17 -0800575public:
576 ClipRegionOp(SkRegion* region, SkRegion::Op op)
Chris Craikff785832013-03-08 13:12:16 -0800577 : ClipOp(op), mRegion(region) {}
Chris Craik2af46352012-11-26 18:30:17 -0800578
Chris Craik7273daa2013-03-28 11:25:24 -0700579 virtual void applyState(OpenGLRenderer& renderer, int saveCount) const {
Chris Craik2af46352012-11-26 18:30:17 -0800580 renderer.clipRegion(mRegion, mOp);
581 }
582
Chris Craikff785832013-03-08 13:12:16 -0800583 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800584 SkIRect bounds = mRegion->getBounds();
585 OP_LOG("ClipRegion bounds %d %d %d %d",
586 bounds.left(), bounds.top(), bounds.right(), bounds.bottom());
587 }
588
589 virtual const char* name() { return "ClipRegion"; }
590
591private:
592 SkRegion* mRegion;
593 SkRegion::Op mOp;
594};
595
596class ResetShaderOp : public StateOp {
597public:
Chris Craik7273daa2013-03-28 11:25:24 -0700598 virtual void applyState(OpenGLRenderer& renderer, int saveCount) const {
Chris Craik2af46352012-11-26 18:30:17 -0800599 renderer.resetShader();
600 }
601
Chris Craikff785832013-03-08 13:12:16 -0800602 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800603 OP_LOGS("ResetShader");
604 }
605
606 virtual const char* name() { return "ResetShader"; }
607};
608
609class SetupShaderOp : public StateOp {
610public:
611 SetupShaderOp(SkiaShader* shader)
612 : mShader(shader) {}
Chris Craik7273daa2013-03-28 11:25:24 -0700613 virtual void applyState(OpenGLRenderer& renderer, int saveCount) const {
Chris Craik2af46352012-11-26 18:30:17 -0800614 renderer.setupShader(mShader);
615 }
616
Chris Craikff785832013-03-08 13:12:16 -0800617 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800618 OP_LOG("SetupShader, shader %p", mShader);
619 }
620
621 virtual const char* name() { return "SetupShader"; }
622
623private:
624 SkiaShader* mShader;
625};
626
627class ResetColorFilterOp : public StateOp {
628public:
Chris Craik7273daa2013-03-28 11:25:24 -0700629 virtual void applyState(OpenGLRenderer& renderer, int saveCount) const {
Chris Craik2af46352012-11-26 18:30:17 -0800630 renderer.resetColorFilter();
631 }
632
Chris Craikff785832013-03-08 13:12:16 -0800633 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800634 OP_LOGS("ResetColorFilter");
635 }
636
637 virtual const char* name() { return "ResetColorFilter"; }
638};
639
640class SetupColorFilterOp : public StateOp {
641public:
642 SetupColorFilterOp(SkiaColorFilter* colorFilter)
643 : mColorFilter(colorFilter) {}
644
Chris Craik7273daa2013-03-28 11:25:24 -0700645 virtual void applyState(OpenGLRenderer& renderer, int saveCount) const {
Chris Craik2af46352012-11-26 18:30:17 -0800646 renderer.setupColorFilter(mColorFilter);
647 }
648
Chris Craikff785832013-03-08 13:12:16 -0800649 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800650 OP_LOG("SetupColorFilter, filter %p", mColorFilter);
651 }
652
653 virtual const char* name() { return "SetupColorFilter"; }
654
655private:
656 SkiaColorFilter* mColorFilter;
657};
658
659class ResetShadowOp : public StateOp {
660public:
Chris Craik7273daa2013-03-28 11:25:24 -0700661 virtual void applyState(OpenGLRenderer& renderer, int saveCount) const {
Chris Craik2af46352012-11-26 18:30:17 -0800662 renderer.resetShadow();
663 }
664
Chris Craikff785832013-03-08 13:12:16 -0800665 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800666 OP_LOGS("ResetShadow");
667 }
668
669 virtual const char* name() { return "ResetShadow"; }
670};
671
672class SetupShadowOp : public StateOp {
673public:
674 SetupShadowOp(float radius, float dx, float dy, int color)
675 : mRadius(radius), mDx(dx), mDy(dy), mColor(color) {}
676
Chris Craik7273daa2013-03-28 11:25:24 -0700677 virtual void applyState(OpenGLRenderer& renderer, int saveCount) const {
Chris Craik2af46352012-11-26 18:30:17 -0800678 renderer.setupShadow(mRadius, mDx, mDy, mColor);
679 }
680
Chris Craikff785832013-03-08 13:12:16 -0800681 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800682 OP_LOG("SetupShadow, radius %f, %f, %f, color %#x", mRadius, mDx, mDy, mColor);
683 }
684
685 virtual const char* name() { return "SetupShadow"; }
686
687private:
688 float mRadius;
689 float mDx;
690 float mDy;
691 int mColor;
692};
693
694class ResetPaintFilterOp : public StateOp {
695public:
Chris Craik7273daa2013-03-28 11:25:24 -0700696 virtual void applyState(OpenGLRenderer& renderer, int saveCount) const {
Chris Craik2af46352012-11-26 18:30:17 -0800697 renderer.resetPaintFilter();
698 }
699
Chris Craikff785832013-03-08 13:12:16 -0800700 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800701 OP_LOGS("ResetPaintFilter");
702 }
703
704 virtual const char* name() { return "ResetPaintFilter"; }
705};
706
707class SetupPaintFilterOp : public StateOp {
708public:
709 SetupPaintFilterOp(int clearBits, int setBits)
710 : mClearBits(clearBits), mSetBits(setBits) {}
711
Chris Craik7273daa2013-03-28 11:25:24 -0700712 virtual void applyState(OpenGLRenderer& renderer, int saveCount) const {
Chris Craik2af46352012-11-26 18:30:17 -0800713 renderer.setupPaintFilter(mClearBits, mSetBits);
714 }
715
Chris Craikff785832013-03-08 13:12:16 -0800716 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800717 OP_LOG("SetupPaintFilter, clear %#x, set %#x", mClearBits, mSetBits);
718 }
719
720 virtual const char* name() { return "SetupPaintFilter"; }
721
722private:
723 int mClearBits;
724 int mSetBits;
725};
726
Chris Craik2af46352012-11-26 18:30:17 -0800727///////////////////////////////////////////////////////////////////////////////
728// DRAW OPERATIONS - these are operations that can draw to the canvas's device
729///////////////////////////////////////////////////////////////////////////////
730
731class DrawBitmapOp : public DrawBoundedOp {
732public:
733 DrawBitmapOp(SkBitmap* bitmap, float left, float top, SkPaint* paint)
Romain Guy3b748a42013-04-17 18:54:38 -0700734 : DrawBoundedOp(left, top, left + bitmap->width(), top + bitmap->height(), paint),
735 mBitmap(bitmap), mAtlasEntry(NULL) {
736 }
737
738 DrawBitmapOp(SkBitmap* bitmap, float left, float top, SkPaint* paint,
739 const AssetAtlas::Entry* entry)
740 : DrawBoundedOp(left, top, left + bitmap->width(), top + bitmap->height(), paint),
741 mBitmap(bitmap), mAtlasEntry(entry) {
742 if (entry) mUvMapper = entry->uvMapper;
743 }
Chris Craik2af46352012-11-26 18:30:17 -0800744
Chris Craik527a3aa2013-03-04 10:19:31 -0800745 virtual status_t applyDraw(OpenGLRenderer& renderer, Rect& dirty) {
Chris Craika08f95c2013-03-15 17:24:33 -0700746 return renderer.drawBitmap(mBitmap, mLocalBounds.left, mLocalBounds.top,
747 getPaint(renderer));
Chris Craik2af46352012-11-26 18:30:17 -0800748 }
749
Chris Craik527a3aa2013-03-04 10:19:31 -0800750#define SET_TEXTURE(ptr, posRect, offsetRect, texCoordsRect, xDim, yDim) \
751 TextureVertex::set(ptr++, posRect.xDim - offsetRect.left, posRect.yDim - offsetRect.top, \
752 texCoordsRect.xDim, texCoordsRect.yDim)
753
754 virtual status_t multiDraw(OpenGLRenderer& renderer, Rect& dirty,
755 const Vector<DrawOp*>& ops, const Rect& bounds) {
756 renderer.restoreDisplayState(state, true); // restore all but the clip
Chris Craik527a3aa2013-03-04 10:19:31 -0800757 TextureVertex vertices[6 * ops.size()];
758 TextureVertex* vertex = &vertices[0];
759
Romain Guy2db5e992013-05-21 15:29:59 -0700760 bool transformed = false;
761
Romain Guy3b748a42013-04-17 18:54:38 -0700762 // TODO: manually handle rect clip for bitmaps by adjusting texCoords per op,
763 // and allowing them to be merged in getBatchId()
Chris Craik527a3aa2013-03-04 10:19:31 -0800764 for (unsigned int i = 0; i < ops.size(); i++) {
765 const Rect& opBounds = ops[i]->state.mBounds;
Romain Guy2db5e992013-05-21 15:29:59 -0700766 // When we reach multiDraw(), the matrix can be either
767 // pureTranslate or simple (translate and/or scale).
768 // If the matrix is not pureTranslate, then we have a scale
769 if (!ops[i]->state.mMatrix.isPureTranslate()) transformed = true;
Romain Guy3b748a42013-04-17 18:54:38 -0700770
771 Rect texCoords(0, 0, 1, 1);
772 ((DrawBitmapOp*) ops[i])->mUvMapper.map(texCoords);
773
Chris Craik527a3aa2013-03-04 10:19:31 -0800774 SET_TEXTURE(vertex, opBounds, bounds, texCoords, left, top);
775 SET_TEXTURE(vertex, opBounds, bounds, texCoords, right, top);
776 SET_TEXTURE(vertex, opBounds, bounds, texCoords, left, bottom);
777
778 SET_TEXTURE(vertex, opBounds, bounds, texCoords, left, bottom);
779 SET_TEXTURE(vertex, opBounds, bounds, texCoords, right, top);
780 SET_TEXTURE(vertex, opBounds, bounds, texCoords, right, bottom);
781 }
782
Romain Guy2db5e992013-05-21 15:29:59 -0700783 return renderer.drawBitmaps(mBitmap, ops.size(), &vertices[0],
784 transformed, bounds, mPaint);
Chris Craik527a3aa2013-03-04 10:19:31 -0800785 }
786
Chris Craikff785832013-03-08 13:12:16 -0800787 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800788 OP_LOG("Draw bitmap %p at %f %f", mBitmap, mLocalBounds.left, mLocalBounds.top);
789 }
790
791 virtual const char* name() { return "DrawBitmap"; }
Chris Craik527a3aa2013-03-04 10:19:31 -0800792
Chris Craik28ce94a2013-05-31 11:38:03 -0700793 virtual void onDefer(OpenGLRenderer& renderer, DeferInfo& deferInfo) {
794 deferInfo.batchId = DeferredDisplayList::kOpBatch_Bitmap;
795 deferInfo.mergeId = mAtlasEntry ? (mergeid_t) &mAtlasEntry->atlas : (mergeid_t) mBitmap;
Romain Guy2db5e992013-05-21 15:29:59 -0700796
Chris Craik28ce94a2013-05-31 11:38:03 -0700797 // Don't merge A8 bitmaps - the paint's color isn't compared by mergeId, or in
798 // MergingDrawBatch::canMergeWith()
799 // TODO: support clipped bitmaps by handling them in SET_TEXTURE
800 deferInfo.mergeable = state.mMatrix.isSimple() && !state.mClipSideFlags &&
801 OpenGLRenderer::getXfermodeDirect(mPaint) == SkXfermode::kSrcOver_Mode &&
802 (mBitmap->getConfig() != SkBitmap::kA8_Config);
Chris Craikc3566d02013-02-04 16:16:33 -0800803 }
Chris Craik2af46352012-11-26 18:30:17 -0800804
Chris Craik527a3aa2013-03-04 10:19:31 -0800805 const SkBitmap* bitmap() { return mBitmap; }
Chris Craik2af46352012-11-26 18:30:17 -0800806protected:
807 SkBitmap* mBitmap;
Romain Guy3b748a42013-04-17 18:54:38 -0700808 const AssetAtlas::Entry* mAtlasEntry;
809 UvMapper mUvMapper;
Chris Craik2af46352012-11-26 18:30:17 -0800810};
811
812class DrawBitmapMatrixOp : public DrawBoundedOp {
813public:
814 DrawBitmapMatrixOp(SkBitmap* bitmap, SkMatrix* matrix, SkPaint* paint)
815 : DrawBoundedOp(paint), mBitmap(bitmap), mMatrix(matrix) {
816 mLocalBounds.set(0, 0, bitmap->width(), bitmap->height());
817 const mat4 transform(*matrix);
818 transform.mapRect(mLocalBounds);
819 }
820
Chris Craik527a3aa2013-03-04 10:19:31 -0800821 virtual status_t applyDraw(OpenGLRenderer& renderer, Rect& dirty) {
Chris Craik2af46352012-11-26 18:30:17 -0800822 return renderer.drawBitmap(mBitmap, mMatrix, getPaint(renderer));
823 }
824
Chris Craikff785832013-03-08 13:12:16 -0800825 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800826 OP_LOG("Draw bitmap %p matrix " MATRIX_STRING, mBitmap, MATRIX_ARGS(mMatrix));
827 }
828
Chris Craik527a3aa2013-03-04 10:19:31 -0800829 virtual const char* name() { return "DrawBitmapMatrix"; }
830
Chris Craik28ce94a2013-05-31 11:38:03 -0700831 virtual void onDefer(OpenGLRenderer& renderer, DeferInfo& deferInfo) {
832 deferInfo.batchId = DeferredDisplayList::kOpBatch_Bitmap;
Chris Craikc3566d02013-02-04 16:16:33 -0800833 }
Chris Craik2af46352012-11-26 18:30:17 -0800834
835private:
836 SkBitmap* mBitmap;
837 SkMatrix* mMatrix;
838};
839
840class DrawBitmapRectOp : public DrawBoundedOp {
841public:
842 DrawBitmapRectOp(SkBitmap* bitmap, float srcLeft, float srcTop, float srcRight, float srcBottom,
843 float dstLeft, float dstTop, float dstRight, float dstBottom, SkPaint* paint)
844 : DrawBoundedOp(dstLeft, dstTop, dstRight, dstBottom, paint),
845 mBitmap(bitmap), mSrc(srcLeft, srcTop, srcRight, srcBottom) {}
846
Chris Craik527a3aa2013-03-04 10:19:31 -0800847 virtual status_t applyDraw(OpenGLRenderer& renderer, Rect& dirty) {
Chris Craik2af46352012-11-26 18:30:17 -0800848 return renderer.drawBitmap(mBitmap, mSrc.left, mSrc.top, mSrc.right, mSrc.bottom,
849 mLocalBounds.left, mLocalBounds.top, mLocalBounds.right, mLocalBounds.bottom,
850 getPaint(renderer));
851 }
852
Chris Craikff785832013-03-08 13:12:16 -0800853 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800854 OP_LOG("Draw bitmap %p src="RECT_STRING", dst="RECT_STRING,
855 mBitmap, RECT_ARGS(mSrc), RECT_ARGS(mLocalBounds));
856 }
857
858 virtual const char* name() { return "DrawBitmapRect"; }
Chris Craik527a3aa2013-03-04 10:19:31 -0800859
Chris Craik28ce94a2013-05-31 11:38:03 -0700860 virtual void onDefer(OpenGLRenderer& renderer, DeferInfo& deferInfo) {
861 deferInfo.batchId = DeferredDisplayList::kOpBatch_Bitmap;
Chris Craikc3566d02013-02-04 16:16:33 -0800862 }
Chris Craik2af46352012-11-26 18:30:17 -0800863
864private:
865 SkBitmap* mBitmap;
866 Rect mSrc;
867};
868
869class DrawBitmapDataOp : public DrawBitmapOp {
870public:
871 DrawBitmapDataOp(SkBitmap* bitmap, float left, float top, SkPaint* paint)
872 : DrawBitmapOp(bitmap, left, top, paint) {}
873
Chris Craik527a3aa2013-03-04 10:19:31 -0800874 virtual status_t applyDraw(OpenGLRenderer& renderer, Rect& dirty) {
Chris Craik2af46352012-11-26 18:30:17 -0800875 return renderer.drawBitmapData(mBitmap, mLocalBounds.left,
876 mLocalBounds.top, getPaint(renderer));
877 }
878
Chris Craikff785832013-03-08 13:12:16 -0800879 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800880 OP_LOG("Draw bitmap %p", mBitmap);
881 }
882
883 virtual const char* name() { return "DrawBitmapData"; }
Chris Craik527a3aa2013-03-04 10:19:31 -0800884
Chris Craik28ce94a2013-05-31 11:38:03 -0700885 virtual void onDefer(OpenGLRenderer& renderer, DeferInfo& deferInfo) {
886 deferInfo.batchId = DeferredDisplayList::kOpBatch_Bitmap;
Chris Craikc3566d02013-02-04 16:16:33 -0800887 }
Chris Craik2af46352012-11-26 18:30:17 -0800888};
889
Chris Craik5d116762013-02-19 17:49:31 -0800890class DrawBitmapMeshOp : public DrawBoundedOp {
Chris Craik2af46352012-11-26 18:30:17 -0800891public:
892 DrawBitmapMeshOp(SkBitmap* bitmap, int meshWidth, int meshHeight,
893 float* vertices, int* colors, SkPaint* paint)
Chris Craik5d116762013-02-19 17:49:31 -0800894 : DrawBoundedOp(vertices, 2 * (meshWidth + 1) * (meshHeight + 1), paint),
895 mBitmap(bitmap), mMeshWidth(meshWidth), mMeshHeight(meshHeight),
Chris Craik2af46352012-11-26 18:30:17 -0800896 mVertices(vertices), mColors(colors) {}
897
Chris Craik527a3aa2013-03-04 10:19:31 -0800898 virtual status_t applyDraw(OpenGLRenderer& renderer, Rect& dirty) {
Chris Craik2af46352012-11-26 18:30:17 -0800899 return renderer.drawBitmapMesh(mBitmap, mMeshWidth, mMeshHeight,
900 mVertices, mColors, getPaint(renderer));
901 }
902
Chris Craikff785832013-03-08 13:12:16 -0800903 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800904 OP_LOG("Draw bitmap %p mesh %d x %d", mBitmap, mMeshWidth, mMeshHeight);
905 }
906
907 virtual const char* name() { return "DrawBitmapMesh"; }
Chris Craik527a3aa2013-03-04 10:19:31 -0800908
Chris Craik28ce94a2013-05-31 11:38:03 -0700909 virtual void onDefer(OpenGLRenderer& renderer, DeferInfo& deferInfo) {
910 deferInfo.batchId = DeferredDisplayList::kOpBatch_Bitmap;
Chris Craikc3566d02013-02-04 16:16:33 -0800911 }
Chris Craik2af46352012-11-26 18:30:17 -0800912
913private:
914 SkBitmap* mBitmap;
915 int mMeshWidth;
916 int mMeshHeight;
917 float* mVertices;
918 int* mColors;
919};
920
921class DrawPatchOp : public DrawBoundedOp {
922public:
Romain Guy3b748a42013-04-17 18:54:38 -0700923 DrawPatchOp(SkBitmap* bitmap, Res_png_9patch* patch,
924 float left, float top, float right, float bottom, int alpha, SkXfermode::Mode mode)
Chris Craik2af46352012-11-26 18:30:17 -0800925 : DrawBoundedOp(left, top, right, bottom, 0),
Romain Guy4c2547f2013-06-11 16:19:24 -0700926 mBitmap(bitmap), mPatch(patch), mAlpha(alpha), mMode(mode),
927 mGenerationId(0), mMesh(NULL) {
Romain Guy3b748a42013-04-17 18:54:38 -0700928 mEntry = Caches::getInstance().assetAtlas.getEntry(bitmap);
929 };
Chris Craik2af46352012-11-26 18:30:17 -0800930
Chris Craik527a3aa2013-03-04 10:19:31 -0800931 virtual status_t applyDraw(OpenGLRenderer& renderer, Rect& dirty) {
Romain Guy4c2547f2013-06-11 16:19:24 -0700932 if (!mMesh || renderer.getCaches().patchCache.getGenerationId() != mGenerationId) {
933 PatchCache& cache = renderer.getCaches().patchCache;
934 mMesh = cache.get(mEntry, mBitmap->width(), mBitmap->height(),
935 mLocalBounds.right - mLocalBounds.left, mLocalBounds.bottom - mLocalBounds.top,
936 mPatch);
937 mGenerationId = cache.getGenerationId();
938 }
939 // We're not calling the public variant of drawPatch() here
940 // This method won't perform the quickReject() since we've already done it at this point
941 return renderer.drawPatch(mBitmap, mMesh, mEntry, mLocalBounds.left, mLocalBounds.top,
Chris Craik2af46352012-11-26 18:30:17 -0800942 mLocalBounds.right, mLocalBounds.bottom, mAlpha, mMode);
943 }
944
Chris Craikff785832013-03-08 13:12:16 -0800945 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800946 OP_LOG("Draw patch "RECT_STRING, RECT_ARGS(mLocalBounds));
947 }
948
949 virtual const char* name() { return "DrawPatch"; }
Chris Craik527a3aa2013-03-04 10:19:31 -0800950
Chris Craik28ce94a2013-05-31 11:38:03 -0700951 virtual void onDefer(OpenGLRenderer& renderer, DeferInfo& deferInfo) {
952 deferInfo.batchId = DeferredDisplayList::kOpBatch_Patch;
Romain Guy5216c3b2013-06-14 16:31:37 -0700953 deferInfo.mergeId = mEntry ? (mergeid_t) &mEntry->atlas : (mergeid_t) mBitmap;
Chris Craik28ce94a2013-05-31 11:38:03 -0700954 deferInfo.mergeable = true;
Romain Guy5216c3b2013-06-14 16:31:37 -0700955 deferInfo.opaqueOverBounds = isOpaqueOverBounds() && mBitmap->isOpaque();
Chris Craikc3566d02013-02-04 16:16:33 -0800956 }
Chris Craik2af46352012-11-26 18:30:17 -0800957
958private:
959 SkBitmap* mBitmap;
Romain Guy3b748a42013-04-17 18:54:38 -0700960 Res_png_9patch* mPatch;
Romain Guy4c2547f2013-06-11 16:19:24 -0700961
Chris Craik2af46352012-11-26 18:30:17 -0800962 int mAlpha;
963 SkXfermode::Mode mMode;
Romain Guy4c2547f2013-06-11 16:19:24 -0700964
965 uint32_t mGenerationId;
966 const Patch* mMesh;
Romain Guy3b748a42013-04-17 18:54:38 -0700967 AssetAtlas::Entry* mEntry;
Chris Craik2af46352012-11-26 18:30:17 -0800968};
969
970class DrawColorOp : public DrawOp {
971public:
972 DrawColorOp(int color, SkXfermode::Mode mode)
973 : DrawOp(0), mColor(color), mMode(mode) {};
974
Chris Craik527a3aa2013-03-04 10:19:31 -0800975 virtual status_t applyDraw(OpenGLRenderer& renderer, Rect& dirty) {
Chris Craik2af46352012-11-26 18:30:17 -0800976 return renderer.drawColor(mColor, mMode);
977 }
978
Chris Craikff785832013-03-08 13:12:16 -0800979 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -0800980 OP_LOG("Draw color %#x, mode %d", mColor, mMode);
981 }
982
983 virtual const char* name() { return "DrawColor"; }
984
985private:
986 int mColor;
987 SkXfermode::Mode mMode;
988};
989
990class DrawStrokableOp : public DrawBoundedOp {
991public:
992 DrawStrokableOp(float left, float top, float right, float bottom, SkPaint* paint)
993 : DrawBoundedOp(left, top, right, bottom, paint) {};
994
995 bool getLocalBounds(Rect& localBounds) {
Chris Craikc3566d02013-02-04 16:16:33 -0800996 localBounds.set(mLocalBounds);
Chris Craik2af46352012-11-26 18:30:17 -0800997 if (mPaint && mPaint->getStyle() != SkPaint::kFill_Style) {
Chris Craikc3566d02013-02-04 16:16:33 -0800998 localBounds.outset(strokeWidthOutset());
Chris Craik2af46352012-11-26 18:30:17 -0800999 }
1000 return true;
1001 }
Chris Craikc3566d02013-02-04 16:16:33 -08001002
Chris Craik28ce94a2013-05-31 11:38:03 -07001003 virtual void onDefer(OpenGLRenderer& renderer, DeferInfo& deferInfo) {
Chris Craikc3566d02013-02-04 16:16:33 -08001004 if (mPaint->getPathEffect()) {
Chris Craik28ce94a2013-05-31 11:38:03 -07001005 deferInfo.batchId = DeferredDisplayList::kOpBatch_AlphaMaskTexture;
Chris Craik527a3aa2013-03-04 10:19:31 -08001006 } else {
Chris Craik28ce94a2013-05-31 11:38:03 -07001007 deferInfo.batchId = mPaint->isAntiAlias() ?
Chris Craik527a3aa2013-03-04 10:19:31 -08001008 DeferredDisplayList::kOpBatch_AlphaVertices :
1009 DeferredDisplayList::kOpBatch_Vertices;
Chris Craikc3566d02013-02-04 16:16:33 -08001010 }
Chris Craikc3566d02013-02-04 16:16:33 -08001011 }
Chris Craik2af46352012-11-26 18:30:17 -08001012};
1013
1014class DrawRectOp : public DrawStrokableOp {
1015public:
1016 DrawRectOp(float left, float top, float right, float bottom, SkPaint* paint)
1017 : DrawStrokableOp(left, top, right, bottom, paint) {}
1018
Chris Craik527a3aa2013-03-04 10:19:31 -08001019 virtual status_t applyDraw(OpenGLRenderer& renderer, Rect& dirty) {
Chris Craik2af46352012-11-26 18:30:17 -08001020 return renderer.drawRect(mLocalBounds.left, mLocalBounds.top,
1021 mLocalBounds.right, mLocalBounds.bottom, getPaint(renderer));
1022 }
1023
Chris Craikff785832013-03-08 13:12:16 -08001024 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -08001025 OP_LOG("Draw Rect "RECT_STRING, RECT_ARGS(mLocalBounds));
1026 }
1027
Chris Craik28ce94a2013-05-31 11:38:03 -07001028 virtual void onDefer(OpenGLRenderer& renderer, DeferInfo& deferInfo) {
1029 DrawStrokableOp::onDefer(renderer, deferInfo);
1030 deferInfo.opaqueOverBounds = isOpaqueOverBounds() &&
1031 mPaint->getStyle() == SkPaint::kFill_Style;
1032 }
1033
Chris Craik2af46352012-11-26 18:30:17 -08001034 virtual const char* name() { return "DrawRect"; }
1035};
1036
Chris Craik5d116762013-02-19 17:49:31 -08001037class DrawRectsOp : public DrawBoundedOp {
Chris Craik2af46352012-11-26 18:30:17 -08001038public:
1039 DrawRectsOp(const float* rects, int count, SkPaint* paint)
Chris Craik5d116762013-02-19 17:49:31 -08001040 : DrawBoundedOp(rects, count, paint),
1041 mRects(rects), mCount(count) {}
Chris Craik2af46352012-11-26 18:30:17 -08001042
Chris Craik527a3aa2013-03-04 10:19:31 -08001043 virtual status_t applyDraw(OpenGLRenderer& renderer, Rect& dirty) {
Chris Craik2af46352012-11-26 18:30:17 -08001044 return renderer.drawRects(mRects, mCount, getPaint(renderer));
1045 }
1046
Chris Craikff785832013-03-08 13:12:16 -08001047 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -08001048 OP_LOG("Draw Rects count %d", mCount);
1049 }
1050
1051 virtual const char* name() { return "DrawRects"; }
1052
Chris Craik28ce94a2013-05-31 11:38:03 -07001053 virtual void onDefer(OpenGLRenderer& renderer, DeferInfo& deferInfo) {
1054 deferInfo.batchId = DeferredDisplayList::kOpBatch_Vertices;
Chris Craikc3566d02013-02-04 16:16:33 -08001055 }
1056
Chris Craik2af46352012-11-26 18:30:17 -08001057private:
1058 const float* mRects;
1059 int mCount;
1060};
1061
1062class DrawRoundRectOp : public DrawStrokableOp {
1063public:
1064 DrawRoundRectOp(float left, float top, float right, float bottom,
1065 float rx, float ry, SkPaint* paint)
1066 : DrawStrokableOp(left, top, right, bottom, paint), mRx(rx), mRy(ry) {}
1067
Chris Craik527a3aa2013-03-04 10:19:31 -08001068 virtual status_t applyDraw(OpenGLRenderer& renderer, Rect& dirty) {
Chris Craik2af46352012-11-26 18:30:17 -08001069 return renderer.drawRoundRect(mLocalBounds.left, mLocalBounds.top,
1070 mLocalBounds.right, mLocalBounds.bottom, mRx, mRy, getPaint(renderer));
1071 }
1072
Chris Craikff785832013-03-08 13:12:16 -08001073 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -08001074 OP_LOG("Draw RoundRect "RECT_STRING", rx %f, ry %f", RECT_ARGS(mLocalBounds), mRx, mRy);
1075 }
1076
1077 virtual const char* name() { return "DrawRoundRect"; }
1078
1079private:
1080 float mRx;
1081 float mRy;
1082};
1083
1084class DrawCircleOp : public DrawStrokableOp {
1085public:
1086 DrawCircleOp(float x, float y, float radius, SkPaint* paint)
1087 : DrawStrokableOp(x - radius, y - radius, x + radius, y + radius, paint),
1088 mX(x), mY(y), mRadius(radius) {}
1089
Chris Craik527a3aa2013-03-04 10:19:31 -08001090 virtual status_t applyDraw(OpenGLRenderer& renderer, Rect& dirty) {
Chris Craik2af46352012-11-26 18:30:17 -08001091 return renderer.drawCircle(mX, mY, mRadius, getPaint(renderer));
1092 }
1093
Chris Craikff785832013-03-08 13:12:16 -08001094 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -08001095 OP_LOG("Draw Circle x %f, y %f, r %f", mX, mY, mRadius);
1096 }
1097
1098 virtual const char* name() { return "DrawCircle"; }
1099
1100private:
1101 float mX;
1102 float mY;
1103 float mRadius;
1104};
1105
1106class DrawOvalOp : public DrawStrokableOp {
1107public:
1108 DrawOvalOp(float left, float top, float right, float bottom, SkPaint* paint)
1109 : DrawStrokableOp(left, top, right, bottom, paint) {}
1110
Chris Craik527a3aa2013-03-04 10:19:31 -08001111 virtual status_t applyDraw(OpenGLRenderer& renderer, Rect& dirty) {
Chris Craik2af46352012-11-26 18:30:17 -08001112 return renderer.drawOval(mLocalBounds.left, mLocalBounds.top,
1113 mLocalBounds.right, mLocalBounds.bottom, getPaint(renderer));
1114 }
1115
Chris Craikff785832013-03-08 13:12:16 -08001116 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -08001117 OP_LOG("Draw Oval "RECT_STRING, RECT_ARGS(mLocalBounds));
1118 }
1119
1120 virtual const char* name() { return "DrawOval"; }
1121};
1122
1123class DrawArcOp : public DrawStrokableOp {
1124public:
1125 DrawArcOp(float left, float top, float right, float bottom,
1126 float startAngle, float sweepAngle, bool useCenter, SkPaint* paint)
1127 : DrawStrokableOp(left, top, right, bottom, paint),
1128 mStartAngle(startAngle), mSweepAngle(sweepAngle), mUseCenter(useCenter) {}
1129
Chris Craik527a3aa2013-03-04 10:19:31 -08001130 virtual status_t applyDraw(OpenGLRenderer& renderer, Rect& dirty) {
Chris Craik2af46352012-11-26 18:30:17 -08001131 return renderer.drawArc(mLocalBounds.left, mLocalBounds.top,
1132 mLocalBounds.right, mLocalBounds.bottom,
1133 mStartAngle, mSweepAngle, mUseCenter, getPaint(renderer));
1134 }
1135
Chris Craikff785832013-03-08 13:12:16 -08001136 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -08001137 OP_LOG("Draw Arc "RECT_STRING", start %f, sweep %f, useCenter %d",
1138 RECT_ARGS(mLocalBounds), mStartAngle, mSweepAngle, mUseCenter);
1139 }
1140
1141 virtual const char* name() { return "DrawArc"; }
1142
1143private:
1144 float mStartAngle;
1145 float mSweepAngle;
1146 bool mUseCenter;
1147};
1148
1149class DrawPathOp : public DrawBoundedOp {
1150public:
1151 DrawPathOp(SkPath* path, SkPaint* paint)
1152 : DrawBoundedOp(paint), mPath(path) {
1153 float left, top, offset;
1154 uint32_t width, height;
Romain Guyca89e2a2013-03-08 17:44:20 -08001155 PathCache::computePathBounds(path, paint, left, top, offset, width, height);
Chris Craik2af46352012-11-26 18:30:17 -08001156 left -= offset;
1157 top -= offset;
1158 mLocalBounds.set(left, top, left + width, top + height);
1159 }
1160
Chris Craik527a3aa2013-03-04 10:19:31 -08001161 virtual status_t applyDraw(OpenGLRenderer& renderer, Rect& dirty) {
Chris Craik2af46352012-11-26 18:30:17 -08001162 return renderer.drawPath(mPath, getPaint(renderer));
1163 }
1164
Chris Craik28ce94a2013-05-31 11:38:03 -07001165 virtual void onDefer(OpenGLRenderer& renderer, DeferInfo& deferInfo) {
Romain Guyca89e2a2013-03-08 17:44:20 -08001166 SkPaint* paint = getPaint(renderer);
1167 renderer.getCaches().pathCache.precache(mPath, paint);
Chris Craik527a3aa2013-03-04 10:19:31 -08001168
Chris Craik28ce94a2013-05-31 11:38:03 -07001169 deferInfo.batchId = DeferredDisplayList::kOpBatch_AlphaMaskTexture;
Romain Guyca89e2a2013-03-08 17:44:20 -08001170 }
1171
Chris Craikff785832013-03-08 13:12:16 -08001172 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -08001173 OP_LOG("Draw Path %p in "RECT_STRING, mPath, RECT_ARGS(mLocalBounds));
1174 }
1175
1176 virtual const char* name() { return "DrawPath"; }
1177
1178private:
1179 SkPath* mPath;
1180};
1181
Chris Craikc3566d02013-02-04 16:16:33 -08001182class DrawLinesOp : public DrawBoundedOp {
Chris Craik2af46352012-11-26 18:30:17 -08001183public:
1184 DrawLinesOp(float* points, int count, SkPaint* paint)
Chris Craik5d116762013-02-19 17:49:31 -08001185 : DrawBoundedOp(points, count, paint),
1186 mPoints(points), mCount(count) {
Chris Craikc3566d02013-02-04 16:16:33 -08001187 mLocalBounds.outset(strokeWidthOutset());
Chris Craik2af46352012-11-26 18:30:17 -08001188 }
1189
Chris Craik527a3aa2013-03-04 10:19:31 -08001190 virtual status_t applyDraw(OpenGLRenderer& renderer, Rect& dirty) {
Chris Craik2af46352012-11-26 18:30:17 -08001191 return renderer.drawLines(mPoints, mCount, getPaint(renderer));
1192 }
1193
Chris Craikff785832013-03-08 13:12:16 -08001194 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -08001195 OP_LOG("Draw Lines count %d", mCount);
1196 }
1197
1198 virtual const char* name() { return "DrawLines"; }
1199
Chris Craik28ce94a2013-05-31 11:38:03 -07001200 virtual void onDefer(OpenGLRenderer& renderer, DeferInfo& deferInfo) {
1201 deferInfo.batchId = mPaint->isAntiAlias() ?
Chris Craikc3566d02013-02-04 16:16:33 -08001202 DeferredDisplayList::kOpBatch_AlphaVertices :
1203 DeferredDisplayList::kOpBatch_Vertices;
1204 }
1205
Chris Craik2af46352012-11-26 18:30:17 -08001206protected:
1207 float* mPoints;
1208 int mCount;
1209};
1210
1211class DrawPointsOp : public DrawLinesOp {
1212public:
1213 DrawPointsOp(float* points, int count, SkPaint* paint)
1214 : DrawLinesOp(points, count, paint) {}
1215
Chris Craik527a3aa2013-03-04 10:19:31 -08001216 virtual status_t applyDraw(OpenGLRenderer& renderer, Rect& dirty) {
Chris Craik2af46352012-11-26 18:30:17 -08001217 return renderer.drawPoints(mPoints, mCount, getPaint(renderer));
1218 }
1219
Chris Craikff785832013-03-08 13:12:16 -08001220 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -08001221 OP_LOG("Draw Points count %d", mCount);
1222 }
1223
1224 virtual const char* name() { return "DrawPoints"; }
1225};
1226
1227class DrawSomeTextOp : public DrawOp {
1228public:
1229 DrawSomeTextOp(const char* text, int bytesCount, int count, SkPaint* paint)
1230 : DrawOp(paint), mText(text), mBytesCount(bytesCount), mCount(count) {};
1231
Chris Craikff785832013-03-08 13:12:16 -08001232 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -08001233 OP_LOG("Draw some text, %d bytes", mBytesCount);
1234 }
Chris Craikc3566d02013-02-04 16:16:33 -08001235
Chris Craik28ce94a2013-05-31 11:38:03 -07001236 virtual void onDefer(OpenGLRenderer& renderer, DeferInfo& deferInfo) {
Romain Guy0f667532013-03-01 14:31:04 -08001237 SkPaint* paint = getPaint(renderer);
1238 FontRenderer& fontRenderer = renderer.getCaches().fontRenderer->getFontRenderer(paint);
1239 fontRenderer.precache(paint, mText, mCount, mat4::identity());
Romain Guy0f667532013-03-01 14:31:04 -08001240
Chris Craik28ce94a2013-05-31 11:38:03 -07001241 deferInfo.batchId = mPaint->getColor() == 0xff000000 ?
Chris Craikc3566d02013-02-04 16:16:33 -08001242 DeferredDisplayList::kOpBatch_Text :
1243 DeferredDisplayList::kOpBatch_ColorText;
1244 }
Chris Craik527a3aa2013-03-04 10:19:31 -08001245
Chris Craik2af46352012-11-26 18:30:17 -08001246protected:
1247 const char* mText;
1248 int mBytesCount;
1249 int mCount;
1250};
1251
1252class DrawTextOnPathOp : public DrawSomeTextOp {
1253public:
1254 DrawTextOnPathOp(const char* text, int bytesCount, int count,
1255 SkPath* path, float hOffset, float vOffset, SkPaint* paint)
1256 : DrawSomeTextOp(text, bytesCount, count, paint),
1257 mPath(path), mHOffset(hOffset), mVOffset(vOffset) {
1258 /* TODO: inherit from DrawBounded and init mLocalBounds */
1259 }
1260
Chris Craik527a3aa2013-03-04 10:19:31 -08001261 virtual status_t applyDraw(OpenGLRenderer& renderer, Rect& dirty) {
Chris Craik2af46352012-11-26 18:30:17 -08001262 return renderer.drawTextOnPath(mText, mBytesCount, mCount, mPath,
1263 mHOffset, mVOffset, getPaint(renderer));
1264 }
1265
1266 virtual const char* name() { return "DrawTextOnPath"; }
1267
1268private:
1269 SkPath* mPath;
1270 float mHOffset;
1271 float mVOffset;
1272};
1273
1274class DrawPosTextOp : public DrawSomeTextOp {
1275public:
1276 DrawPosTextOp(const char* text, int bytesCount, int count,
1277 const float* positions, SkPaint* paint)
1278 : DrawSomeTextOp(text, bytesCount, count, paint), mPositions(positions) {
1279 /* TODO: inherit from DrawBounded and init mLocalBounds */
1280 }
1281
Chris Craik527a3aa2013-03-04 10:19:31 -08001282 virtual status_t applyDraw(OpenGLRenderer& renderer, Rect& dirty) {
Chris Craik2af46352012-11-26 18:30:17 -08001283 return renderer.drawPosText(mText, mBytesCount, mCount, mPositions, getPaint(renderer));
1284 }
1285
1286 virtual const char* name() { return "DrawPosText"; }
1287
1288private:
1289 const float* mPositions;
1290};
1291
1292class DrawTextOp : public DrawBoundedOp {
1293public:
1294 DrawTextOp(const char* text, int bytesCount, int count, float x, float y,
Chris Craik41541822013-05-03 16:35:54 -07001295 const float* positions, SkPaint* paint, float totalAdvance, const Rect& bounds)
1296 : DrawBoundedOp(bounds, paint), mText(text), mBytesCount(bytesCount), mCount(count),
1297 mX(x), mY(y), mPositions(positions), mTotalAdvance(totalAdvance) {
Romain Guybd3055f2013-03-13 16:14:47 -07001298 memset(&mPrecacheTransform.data[0], 0xff, 16 * sizeof(float));
Chris Craik2af46352012-11-26 18:30:17 -08001299 }
1300
Chris Craik28ce94a2013-05-31 11:38:03 -07001301 virtual void onDefer(OpenGLRenderer& renderer, DeferInfo& deferInfo) {
Romain Guy0f667532013-03-01 14:31:04 -08001302 SkPaint* paint = getPaint(renderer);
1303 FontRenderer& fontRenderer = renderer.getCaches().fontRenderer->getFontRenderer(paint);
Romain Guybd3055f2013-03-13 16:14:47 -07001304 const mat4& transform = renderer.findBestFontTransform(state.mMatrix);
1305 if (mPrecacheTransform != transform) {
1306 fontRenderer.precache(paint, mText, mCount, transform);
1307 mPrecacheTransform = transform;
1308 }
Chris Craik28ce94a2013-05-31 11:38:03 -07001309 deferInfo.batchId = mPaint->getColor() == 0xff000000 ?
Chris Craik527a3aa2013-03-04 10:19:31 -08001310 DeferredDisplayList::kOpBatch_Text :
1311 DeferredDisplayList::kOpBatch_ColorText;
1312
Chris Craik28ce94a2013-05-31 11:38:03 -07001313 deferInfo.mergeId = (mergeid_t)mPaint->getColor();
Chris Craik527a3aa2013-03-04 10:19:31 -08001314
1315 // don't merge decorated text - the decorations won't draw in order
1316 bool noDecorations = !(mPaint->getFlags() & (SkPaint::kUnderlineText_Flag |
1317 SkPaint::kStrikeThruText_Flag));
Chris Craik28ce94a2013-05-31 11:38:03 -07001318 deferInfo.mergeable = state.mMatrix.isPureTranslate() && noDecorations &&
1319 OpenGLRenderer::getXfermodeDirect(mPaint) == SkXfermode::kSrcOver_Mode;
Romain Guy0f667532013-03-01 14:31:04 -08001320 }
1321
Chris Craik527a3aa2013-03-04 10:19:31 -08001322 virtual status_t applyDraw(OpenGLRenderer& renderer, Rect& dirty) {
Chris Craik2af46352012-11-26 18:30:17 -08001323 return renderer.drawText(mText, mBytesCount, mCount, mX, mY,
Chris Craik41541822013-05-03 16:35:54 -07001324 mPositions, getPaint(renderer), mTotalAdvance, mLocalBounds);
Chris Craik2af46352012-11-26 18:30:17 -08001325 }
1326
Chris Craik527a3aa2013-03-04 10:19:31 -08001327 virtual status_t multiDraw(OpenGLRenderer& renderer, Rect& dirty,
1328 const Vector<DrawOp*>& ops, const Rect& bounds) {
1329 status_t status = DrawGlInfo::kStatusDone;
Chris Craik527a3aa2013-03-04 10:19:31 -08001330 for (unsigned int i = 0; i < ops.size(); i++) {
1331 DrawOpMode drawOpMode = (i == ops.size() - 1) ? kDrawOpMode_Flush : kDrawOpMode_Defer;
1332 renderer.restoreDisplayState(ops[i]->state, true); // restore all but the clip
1333
1334 DrawTextOp& op = *((DrawTextOp*)ops[i]);
1335 status |= renderer.drawText(op.mText, op.mBytesCount, op.mCount, op.mX, op.mY,
Chris Craik41541822013-05-03 16:35:54 -07001336 op.mPositions, op.getPaint(renderer), op.mTotalAdvance, op.mLocalBounds,
1337 drawOpMode);
Chris Craik527a3aa2013-03-04 10:19:31 -08001338 }
1339 return status;
1340 }
1341
Chris Craikff785832013-03-08 13:12:16 -08001342 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -08001343 OP_LOG("Draw Text of count %d, bytes %d", mCount, mBytesCount);
1344 }
1345
1346 virtual const char* name() { return "DrawText"; }
1347
1348private:
1349 const char* mText;
1350 int mBytesCount;
1351 int mCount;
1352 float mX;
1353 float mY;
1354 const float* mPositions;
Chris Craik41541822013-05-03 16:35:54 -07001355 float mTotalAdvance;
Romain Guybd3055f2013-03-13 16:14:47 -07001356 mat4 mPrecacheTransform;
Chris Craik2af46352012-11-26 18:30:17 -08001357};
1358
1359///////////////////////////////////////////////////////////////////////////////
1360// SPECIAL DRAW OPERATIONS
1361///////////////////////////////////////////////////////////////////////////////
1362
1363class DrawFunctorOp : public DrawOp {
1364public:
1365 DrawFunctorOp(Functor* functor)
1366 : DrawOp(0), mFunctor(functor) {}
1367
Chris Craik527a3aa2013-03-04 10:19:31 -08001368 virtual status_t applyDraw(OpenGLRenderer& renderer, Rect& dirty) {
Chris Craik2af46352012-11-26 18:30:17 -08001369 renderer.startMark("GL functor");
1370 status_t ret = renderer.callDrawGLFunction(mFunctor, dirty);
1371 renderer.endMark();
1372 return ret;
1373 }
1374
Chris Craikff785832013-03-08 13:12:16 -08001375 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -08001376 OP_LOG("Draw Functor %p", mFunctor);
1377 }
1378
1379 virtual const char* name() { return "DrawFunctor"; }
1380
1381private:
1382 Functor* mFunctor;
1383};
1384
Chris Craik5d116762013-02-19 17:49:31 -08001385class DrawDisplayListOp : public DrawBoundedOp {
Chris Craik2af46352012-11-26 18:30:17 -08001386public:
1387 DrawDisplayListOp(DisplayList* displayList, int flags)
Chris Craik5d116762013-02-19 17:49:31 -08001388 : DrawBoundedOp(0, 0, displayList->getWidth(), displayList->getHeight(), 0),
1389 mDisplayList(displayList), mFlags(flags) {}
Chris Craikc3566d02013-02-04 16:16:33 -08001390
Chet Haasedd671592013-04-19 14:54:34 -07001391 virtual void defer(DeferStateStruct& deferStruct, int saveCount, int level,
1392 bool useQuickReject) {
Chris Craikc3566d02013-02-04 16:16:33 -08001393 if (mDisplayList && mDisplayList->isRenderable()) {
Chris Craikff785832013-03-08 13:12:16 -08001394 mDisplayList->defer(deferStruct, level + 1);
Chris Craikc3566d02013-02-04 16:16:33 -08001395 }
Chris Craikc3566d02013-02-04 16:16:33 -08001396 }
Chet Haasedd671592013-04-19 14:54:34 -07001397 virtual void replay(ReplayStateStruct& replayStruct, int saveCount, int level,
1398 bool useQuickReject) {
Chris Craikff785832013-03-08 13:12:16 -08001399 if (mDisplayList && mDisplayList->isRenderable()) {
1400 mDisplayList->replay(replayStruct, level + 1);
1401 }
1402 }
Chris Craik2af46352012-11-26 18:30:17 -08001403
Chris Craika08f95c2013-03-15 17:24:33 -07001404 // NOT USED since replay() is overridden
Chris Craik527a3aa2013-03-04 10:19:31 -08001405 virtual status_t applyDraw(OpenGLRenderer& renderer, Rect& dirty) {
Chris Craika08f95c2013-03-15 17:24:33 -07001406 return DrawGlInfo::kStatusDone;
1407 }
Chris Craikff785832013-03-08 13:12:16 -08001408
1409 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -08001410 OP_LOG("Draw Display List %p, flags %#x", mDisplayList, mFlags);
Chris Craikff785832013-03-08 13:12:16 -08001411 if (mDisplayList && (logFlags & kOpLogFlag_Recurse)) {
Chris Craik2af46352012-11-26 18:30:17 -08001412 mDisplayList->output(level + 1);
1413 }
1414 }
1415
1416 virtual const char* name() { return "DrawDisplayList"; }
1417
1418private:
1419 DisplayList* mDisplayList;
1420 int mFlags;
1421};
1422
1423class DrawLayerOp : public DrawOp {
1424public:
Chris Craika08f95c2013-03-15 17:24:33 -07001425 DrawLayerOp(Layer* layer, float x, float y)
1426 : DrawOp(0), mLayer(layer), mX(x), mY(y) {}
Chris Craik2af46352012-11-26 18:30:17 -08001427
Chris Craik527a3aa2013-03-04 10:19:31 -08001428 virtual status_t applyDraw(OpenGLRenderer& renderer, Rect& dirty) {
Chris Craika08f95c2013-03-15 17:24:33 -07001429 return renderer.drawLayer(mLayer, mX, mY);
Chris Craik2af46352012-11-26 18:30:17 -08001430 }
1431
Chris Craikff785832013-03-08 13:12:16 -08001432 virtual void output(int level, uint32_t logFlags) {
Chris Craik2af46352012-11-26 18:30:17 -08001433 OP_LOG("Draw Layer %p at %f %f", mLayer, mX, mY);
1434 }
1435
1436 virtual const char* name() { return "DrawLayer"; }
1437
1438private:
1439 Layer* mLayer;
1440 float mX;
1441 float mY;
1442};
1443
1444}; // namespace uirenderer
1445}; // namespace android
1446
1447#endif // ANDROID_HWUI_DISPLAY_OPERATION_H