blob: 3e5e3bfc3bf238b66f56895c4434ecb66e8f7c5f [file] [log] [blame]
Derek Sollenberger8872b382014-06-23 14:13:53 -04001/*
2 * Copyright (C) 2014 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
Derek Sollenbergerc1908132016-07-15 10:28:16 -040017#include "SkiaCanvas.h"
Derek Sollenberger8872b382014-06-23 14:13:53 -040018
Derek Sollenbergerc1908132016-07-15 10:28:16 -040019#include "CanvasProperty.h"
Matt Sarett7de73852016-10-25 18:36:39 -040020#include "NinePatchUtils.h"
Derek Sollenbergerc1908132016-07-15 10:28:16 -040021#include "VectorDrawable.h"
sergeyvaed7f582016-10-14 16:30:21 -070022#include "hwui/Bitmap.h"
Yuqian Liafc221492016-07-18 13:07:42 -040023#include "hwui/MinikinUtils.h"
Stan Iliev021693b2016-10-17 16:26:15 -040024#include "pipeline/skia/AnimatedDrawables.h"
Derek Sollenbergerc1908132016-07-15 10:28:16 -040025
Matt Sarett44dc2702017-04-13 09:33:18 -040026#include <SkCanvasStateUtils.h>
Matt Sarettea70d222017-03-29 16:25:10 -040027#include <SkColorSpaceXformCanvas.h>
Derek Sollenberger6f485562015-07-30 10:00:39 -040028#include <SkDrawable.h>
John Reck849911a2015-01-20 07:51:14 -080029#include <SkDeque.h>
30#include <SkDrawFilter.h>
31#include <SkGraphics.h>
Derek Sollenberger6f485562015-07-30 10:00:39 -040032#include <SkImage.h>
Matt Sarett62feb3a2016-09-20 10:34:11 -040033#include <SkImagePriv.h>
Yuqian Liafc221492016-07-18 13:07:42 -040034#include <SkRSXform.h>
John Reck849911a2015-01-20 07:51:14 -080035#include <SkShader.h>
John Reck849911a2015-01-20 07:51:14 -080036#include <SkTemplates.h>
Stan Ilievf50806a2016-10-24 10:40:39 -040037#include <SkTextBlob.h>
Derek Sollenberger8872b382014-06-23 14:13:53 -040038
Ben Wagner60126ef2015-08-07 12:13:48 -040039#include <memory>
40
Derek Sollenberger8872b382014-06-23 14:13:53 -040041namespace android {
42
Stan Ilievf50806a2016-10-24 10:40:39 -040043using uirenderer::PaintUtils;
44
John Reckc1b33d62015-04-22 09:04:45 -070045Canvas* Canvas::create_canvas(const SkBitmap& bitmap) {
Derek Sollenberger8872b382014-06-23 14:13:53 -040046 return new SkiaCanvas(bitmap);
47}
48
Matt Sarettea70d222017-03-29 16:25:10 -040049Canvas* Canvas::create_canvas(SkCanvas* skiaCanvas, XformToSRGB xformToSRGB) {
50 return new SkiaCanvas(skiaCanvas, xformToSRGB);
Derek Sollenberger8872b382014-06-23 14:13:53 -040051}
52
Stan Ilievf50806a2016-10-24 10:40:39 -040053SkiaCanvas::SkiaCanvas() {}
54
Matt Sarettea70d222017-03-29 16:25:10 -040055SkiaCanvas::SkiaCanvas(SkCanvas* canvas, XformToSRGB xformToSRGB)
56 : mCanvas(canvas)
57{
58 LOG_ALWAYS_FATAL_IF(XformToSRGB::kImmediate == xformToSRGB);
59}
Stan Ilievf50806a2016-10-24 10:40:39 -040060
John Reckc1b33d62015-04-22 09:04:45 -070061SkiaCanvas::SkiaCanvas(const SkBitmap& bitmap) {
Romain Guy82426562017-04-04 19:38:50 -070062 sk_sp<SkColorSpace> cs = bitmap.refColorSpace();
Matt Sarettca9b7032017-04-13 12:18:47 -040063 mCanvasOwned =
64 std::unique_ptr<SkCanvas>(new SkCanvas(bitmap, SkCanvas::ColorBehavior::kLegacy));
Romain Guy82426562017-04-04 19:38:50 -070065 mCanvasWrapper = SkCreateColorSpaceXformCanvas(mCanvasOwned.get(),
66 cs == nullptr ? SkColorSpace::MakeSRGB() : std::move(cs));
Matt Sarettea70d222017-03-29 16:25:10 -040067 mCanvas = mCanvasWrapper.get();
Derek Sollenberger8872b382014-06-23 14:13:53 -040068}
69
Stan Iliev021693b2016-10-17 16:26:15 -040070SkiaCanvas::~SkiaCanvas() {}
71
Derek Sollenbergerc1908132016-07-15 10:28:16 -040072void SkiaCanvas::reset(SkCanvas* skiaCanvas) {
Mike Reed6acfe162016-11-18 17:21:09 -050073 if (mCanvas != skiaCanvas) {
74 mCanvas = skiaCanvas;
75 mCanvasOwned.reset();
76 }
Derek Sollenbergerc1908132016-07-15 10:28:16 -040077 mSaveStack.reset(nullptr);
78 mHighContrastText = false;
79}
80
Derek Sollenberger8872b382014-06-23 14:13:53 -040081// ----------------------------------------------------------------------------
82// Canvas state operations: Replace Bitmap
83// ----------------------------------------------------------------------------
84
John Reckc1b33d62015-04-22 09:04:45 -070085void SkiaCanvas::setBitmap(const SkBitmap& bitmap) {
Romain Guy82426562017-04-04 19:38:50 -070086 sk_sp<SkColorSpace> cs = bitmap.refColorSpace();
Matt Sarettca9b7032017-04-13 12:18:47 -040087 std::unique_ptr<SkCanvas> newCanvas =
88 std::unique_ptr<SkCanvas>(new SkCanvas(bitmap, SkCanvas::ColorBehavior::kLegacy));
Romain Guy82426562017-04-04 19:38:50 -070089 std::unique_ptr<SkCanvas> newCanvasWrapper = SkCreateColorSpaceXformCanvas(newCanvas.get(),
90 cs == nullptr ? SkColorSpace::MakeSRGB() : std::move(cs));
Tony Mantler4f641d12017-03-14 22:36:14 +000091
Tony Mantler4f641d12017-03-14 22:36:14 +000092 // deletes the previously owned canvas (if any)
Matt Sarettea70d222017-03-29 16:25:10 -040093 mCanvasOwned = std::move(newCanvas);
94 mCanvasWrapper = std::move(newCanvasWrapper);
95 mCanvas = mCanvasWrapper.get();
Tony Mantler4f641d12017-03-14 22:36:14 +000096
Derek Sollenberger8872b382014-06-23 14:13:53 -040097 // clean up the old save stack
Stan Ilievf50806a2016-10-24 10:40:39 -040098 mSaveStack.reset(nullptr);
Derek Sollenberger8872b382014-06-23 14:13:53 -040099}
100
101// ----------------------------------------------------------------------------
102// Canvas state operations
103// ----------------------------------------------------------------------------
104
105bool SkiaCanvas::isOpaque() {
Leon Scroggins IIIf35b9892015-07-31 10:38:40 -0400106 return mCanvas->imageInfo().isOpaque();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400107}
108
109int SkiaCanvas::width() {
Leon Scroggins IIIf35b9892015-07-31 10:38:40 -0400110 return mCanvas->imageInfo().width();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400111}
112
113int SkiaCanvas::height() {
Leon Scroggins IIIf35b9892015-07-31 10:38:40 -0400114 return mCanvas->imageInfo().height();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400115}
116
117// ----------------------------------------------------------------------------
118// Canvas state operations: Save (layer)
119// ----------------------------------------------------------------------------
120
121int SkiaCanvas::getSaveCount() const {
122 return mCanvas->getSaveCount();
123}
124
Florin Malitaeecff562015-12-21 10:43:01 -0500125int SkiaCanvas::save(SaveFlags::Flags flags) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400126 int count = mCanvas->save();
127 recordPartialSave(flags);
128 return count;
129}
130
Florin Malita5e271402015-11-04 14:36:02 -0500131// The SkiaCanvas::restore operation layers on the capability to preserve
132// either (or both) the matrix and/or clip state after a SkCanvas::restore
133// operation. It does this by explicitly saving off the clip & matrix state
134// when requested and playing it back after the SkCanvas::restore.
Derek Sollenberger8872b382014-06-23 14:13:53 -0400135void SkiaCanvas::restore() {
Stan Ilievf50806a2016-10-24 10:40:39 -0400136 const auto* rec = this->currentSaveRec();
137 if (!rec) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400138 // Fast path - no record for this frame.
139 mCanvas->restore();
140 return;
141 }
142
Florin Malitaeecff562015-12-21 10:43:01 -0500143 bool preserveMatrix = !(rec->saveFlags & SaveFlags::Matrix);
144 bool preserveClip = !(rec->saveFlags & SaveFlags::Clip);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400145
146 SkMatrix savedMatrix;
147 if (preserveMatrix) {
148 savedMatrix = mCanvas->getTotalMatrix();
149 }
150
Stan Ilievf50806a2016-10-24 10:40:39 -0400151 const size_t clipIndex = rec->clipIndex;
Derek Sollenberger8872b382014-06-23 14:13:53 -0400152
153 mCanvas->restore();
Stan Ilievf50806a2016-10-24 10:40:39 -0400154 mSaveStack->pop_back();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400155
156 if (preserveMatrix) {
157 mCanvas->setMatrix(savedMatrix);
158 }
159
Stan Ilievf50806a2016-10-24 10:40:39 -0400160 if (preserveClip) {
161 this->applyPersistentClips(clipIndex);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400162 }
Derek Sollenberger8872b382014-06-23 14:13:53 -0400163}
164
165void SkiaCanvas::restoreToCount(int restoreCount) {
166 while (mCanvas->getSaveCount() > restoreCount) {
167 this->restore();
168 }
169}
170
Florin Malitaeecff562015-12-21 10:43:01 -0500171static inline SkCanvas::SaveLayerFlags layerFlags(SaveFlags::Flags flags) {
172 SkCanvas::SaveLayerFlags layerFlags = 0;
173
Yuqian Li83427ff2016-09-14 11:14:06 -0400174 // We intentionally ignore the SaveFlags::HasAlphaLayer and
175 // SkCanvas::kIsOpaque_SaveLayerFlag flags because HWUI ignores it
176 // and our Android client may use it incorrectly.
177 // In Skia, this flag is purely for performance optimization.
Florin Malitaeecff562015-12-21 10:43:01 -0500178
179 if (!(flags & SaveFlags::ClipToLayer)) {
180 layerFlags |= SkCanvas::kDontClipToLayer_Legacy_SaveLayerFlag;
181 }
182
183 return layerFlags;
184}
185
Derek Sollenberger8872b382014-06-23 14:13:53 -0400186int SkiaCanvas::saveLayer(float left, float top, float right, float bottom,
Florin Malitaeecff562015-12-21 10:43:01 -0500187 const SkPaint* paint, SaveFlags::Flags flags) {
188 const SkRect bounds = SkRect::MakeLTRB(left, top, right, bottom);
Derek Sollenbergerb8201192017-01-09 16:11:59 -0500189 const SkCanvas::SaveLayerRec rec(&bounds, paint, layerFlags(flags));
Florin Malitaeecff562015-12-21 10:43:01 -0500190
Stan Iliev68885e32016-12-14 11:18:34 -0500191 return mCanvas->saveLayer(rec);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400192}
193
194int SkiaCanvas::saveLayerAlpha(float left, float top, float right, float bottom,
Florin Malitaeecff562015-12-21 10:43:01 -0500195 int alpha, SaveFlags::Flags flags) {
Florin Malitaeecff562015-12-21 10:43:01 -0500196 if (static_cast<unsigned>(alpha) < 0xFF) {
Yuqian Lifd92ee42016-04-27 17:03:38 -0400197 SkPaint alphaPaint;
198 alphaPaint.setAlpha(alpha);
199 return this->saveLayer(left, top, right, bottom, &alphaPaint, flags);
Florin Malitaeecff562015-12-21 10:43:01 -0500200 }
Yuqian Lifd92ee42016-04-27 17:03:38 -0400201 return this->saveLayer(left, top, right, bottom, nullptr, flags);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400202}
203
Stan Ilievf50806a2016-10-24 10:40:39 -0400204class SkiaCanvas::Clip {
205public:
Mike Reed6e49c9f2016-12-02 15:36:59 -0500206 Clip(const SkRect& rect, SkClipOp op, const SkMatrix& m)
Stan Ilievf50806a2016-10-24 10:40:39 -0400207 : mType(Type::Rect), mOp(op), mMatrix(m), mRRect(SkRRect::MakeRect(rect)) {}
Mike Reed6e49c9f2016-12-02 15:36:59 -0500208 Clip(const SkRRect& rrect, SkClipOp op, const SkMatrix& m)
Stan Ilievf50806a2016-10-24 10:40:39 -0400209 : mType(Type::RRect), mOp(op), mMatrix(m), mRRect(rrect) {}
Mike Reed6e49c9f2016-12-02 15:36:59 -0500210 Clip(const SkPath& path, SkClipOp op, const SkMatrix& m)
Stan Ilievf50806a2016-10-24 10:40:39 -0400211 : mType(Type::Path), mOp(op), mMatrix(m), mPath(&path) {}
212
213 void apply(SkCanvas* canvas) const {
214 canvas->setMatrix(mMatrix);
215 switch (mType) {
216 case Type::Rect:
217 canvas->clipRect(mRRect.rect(), mOp);
218 break;
219 case Type::RRect:
220 canvas->clipRRect(mRRect, mOp);
221 break;
222 case Type::Path:
223 canvas->clipPath(*mPath.get(), mOp);
224 break;
225 }
226 }
227
228private:
229 enum class Type {
230 Rect,
231 RRect,
232 Path,
233 };
234
Mike Reed6e49c9f2016-12-02 15:36:59 -0500235 Type mType;
236 SkClipOp mOp;
237 SkMatrix mMatrix;
Stan Ilievf50806a2016-10-24 10:40:39 -0400238
239 // These are logically a union (tracked separately due to non-POD path).
240 SkTLazy<SkPath> mPath;
241 SkRRect mRRect;
242};
243
244const SkiaCanvas::SaveRec* SkiaCanvas::currentSaveRec() const {
245 const SaveRec* rec = mSaveStack
246 ? static_cast<const SaveRec*>(mSaveStack->back())
247 : nullptr;
248 int currentSaveCount = mCanvas->getSaveCount();
249 SkASSERT(!rec || currentSaveCount >= rec->saveCount);
250
251 return (rec && rec->saveCount == currentSaveCount) ? rec : nullptr;
252}
253
Derek Sollenberger8872b382014-06-23 14:13:53 -0400254// ----------------------------------------------------------------------------
255// functions to emulate legacy SaveFlags (i.e. independent matrix/clip flags)
256// ----------------------------------------------------------------------------
257
Florin Malitaeecff562015-12-21 10:43:01 -0500258void SkiaCanvas::recordPartialSave(SaveFlags::Flags flags) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400259 // A partial save is a save operation which doesn't capture the full canvas state.
Florin Malitaeecff562015-12-21 10:43:01 -0500260 // (either SaveFlags::Matrix or SaveFlags::Clip is missing).
Derek Sollenberger8872b382014-06-23 14:13:53 -0400261
262 // Mask-out non canvas state bits.
Florin Malitaeecff562015-12-21 10:43:01 -0500263 flags &= SaveFlags::MatrixClip;
Derek Sollenberger8872b382014-06-23 14:13:53 -0400264
Florin Malitaeecff562015-12-21 10:43:01 -0500265 if (flags == SaveFlags::MatrixClip) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400266 // not a partial save.
267 return;
268 }
269
Stan Ilievf50806a2016-10-24 10:40:39 -0400270 if (!mSaveStack) {
Ben Wagnerd1cbc162015-08-19 12:45:09 -0400271 mSaveStack.reset(new SkDeque(sizeof(struct SaveRec), 8));
Derek Sollenberger8872b382014-06-23 14:13:53 -0400272 }
273
274 SaveRec* rec = static_cast<SaveRec*>(mSaveStack->push_back());
Florin Malita5e271402015-11-04 14:36:02 -0500275 rec->saveCount = mCanvas->getSaveCount();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400276 rec->saveFlags = flags;
Stan Ilievf50806a2016-10-24 10:40:39 -0400277 rec->clipIndex = mClipStack.size();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400278}
279
Stan Ilievf50806a2016-10-24 10:40:39 -0400280template <typename T>
Mike Reed6e49c9f2016-12-02 15:36:59 -0500281void SkiaCanvas::recordClip(const T& clip, SkClipOp op) {
Stan Ilievf50806a2016-10-24 10:40:39 -0400282 // Only need tracking when in a partial save frame which
283 // doesn't restore the clip.
284 const SaveRec* rec = this->currentSaveRec();
285 if (rec && !(rec->saveFlags & SaveFlags::Clip)) {
286 mClipStack.emplace_back(clip, op, mCanvas->getTotalMatrix());
Derek Sollenberger8872b382014-06-23 14:13:53 -0400287 }
288}
289
Stan Ilievf50806a2016-10-24 10:40:39 -0400290// Applies and optionally removes all clips >= index.
291void SkiaCanvas::applyPersistentClips(size_t clipStartIndex) {
292 SkASSERT(clipStartIndex <= mClipStack.size());
293 const auto begin = mClipStack.cbegin() + clipStartIndex;
294 const auto end = mClipStack.cend();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400295
Stan Ilievf50806a2016-10-24 10:40:39 -0400296 // Clip application mutates the CTM.
297 const SkMatrix saveMatrix = mCanvas->getTotalMatrix();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400298
Stan Ilievf50806a2016-10-24 10:40:39 -0400299 for (auto clip = begin; clip != end; ++clip) {
Mike Reed6acfe162016-11-18 17:21:09 -0500300 clip->apply(mCanvas);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400301 }
302
Stan Ilievf50806a2016-10-24 10:40:39 -0400303 mCanvas->setMatrix(saveMatrix);
304
305 // If the current/post-restore save rec is also persisting clips, we
306 // leave them on the stack to be reapplied part of the next restore().
307 // Otherwise we're done and just pop them.
308 const auto* rec = this->currentSaveRec();
309 if (!rec || (rec->saveFlags & SaveFlags::Clip)) {
310 mClipStack.erase(begin, end);
311 }
Derek Sollenberger8872b382014-06-23 14:13:53 -0400312}
313
314// ----------------------------------------------------------------------------
315// Canvas state operations: Matrix
316// ----------------------------------------------------------------------------
317
318void SkiaCanvas::getMatrix(SkMatrix* outMatrix) const {
319 *outMatrix = mCanvas->getTotalMatrix();
320}
321
322void SkiaCanvas::setMatrix(const SkMatrix& matrix) {
323 mCanvas->setMatrix(matrix);
324}
325
326void SkiaCanvas::concat(const SkMatrix& matrix) {
327 mCanvas->concat(matrix);
328}
329
330void SkiaCanvas::rotate(float degrees) {
331 mCanvas->rotate(degrees);
332}
333
334void SkiaCanvas::scale(float sx, float sy) {
335 mCanvas->scale(sx, sy);
336}
337
338void SkiaCanvas::skew(float sx, float sy) {
339 mCanvas->skew(sx, sy);
340}
341
342void SkiaCanvas::translate(float dx, float dy) {
343 mCanvas->translate(dx, dy);
344}
345
346// ----------------------------------------------------------------------------
347// Canvas state operations: Clips
348// ----------------------------------------------------------------------------
349
350// This function is a mirror of SkCanvas::getClipBounds except that it does
351// not outset the edge of the clip to account for anti-aliasing. There is
352// a skia bug to investigate pushing this logic into back into skia.
353// (see https://code.google.com/p/skia/issues/detail?id=1303)
354bool SkiaCanvas::getClipBounds(SkRect* outRect) const {
355 SkIRect ibounds;
Mike Reed5e438982017-01-25 08:23:25 -0500356 if (!mCanvas->getDeviceClipBounds(&ibounds)) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400357 return false;
358 }
359
360 SkMatrix inverse;
361 // if we can't invert the CTM, we can't return local clip bounds
362 if (!mCanvas->getTotalMatrix().invert(&inverse)) {
363 if (outRect) {
364 outRect->setEmpty();
365 }
366 return false;
367 }
368
369 if (NULL != outRect) {
370 SkRect r = SkRect::Make(ibounds);
371 inverse.mapRect(outRect, r);
372 }
373 return true;
374}
375
376bool SkiaCanvas::quickRejectRect(float left, float top, float right, float bottom) const {
377 SkRect bounds = SkRect::MakeLTRB(left, top, right, bottom);
378 return mCanvas->quickReject(bounds);
379}
380
381bool SkiaCanvas::quickRejectPath(const SkPath& path) const {
382 return mCanvas->quickReject(path);
383}
384
Mike Reed6e49c9f2016-12-02 15:36:59 -0500385bool SkiaCanvas::clipRect(float left, float top, float right, float bottom, SkClipOp op) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400386 SkRect rect = SkRect::MakeLTRB(left, top, right, bottom);
Stan Ilievf50806a2016-10-24 10:40:39 -0400387 this->recordClip(rect, op);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400388 mCanvas->clipRect(rect, op);
Chris Craik5ec6a282015-06-23 15:42:12 -0700389 return !mCanvas->isClipEmpty();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400390}
391
Mike Reed6e49c9f2016-12-02 15:36:59 -0500392bool SkiaCanvas::clipPath(const SkPath* path, SkClipOp op) {
Derek Sollenbergerf7d98f42017-04-17 11:27:36 -0400393 this->recordClip(*path, op);
394 mCanvas->clipPath(*path, op);
Chris Craik5ec6a282015-06-23 15:42:12 -0700395 return !mCanvas->isClipEmpty();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400396}
397
Derek Sollenberger8872b382014-06-23 14:13:53 -0400398// ----------------------------------------------------------------------------
399// Canvas state operations: Filters
400// ----------------------------------------------------------------------------
401
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400402SkDrawFilter* SkiaCanvas::getDrawFilter() {
403 return mCanvas->getDrawFilter();
404}
405
Derek Sollenberger8872b382014-06-23 14:13:53 -0400406void SkiaCanvas::setDrawFilter(SkDrawFilter* drawFilter) {
407 mCanvas->setDrawFilter(drawFilter);
408}
409
410// ----------------------------------------------------------------------------
Matt Sarett44dc2702017-04-13 09:33:18 -0400411// Canvas state operations: Capture
412// ----------------------------------------------------------------------------
413
414SkCanvasState* SkiaCanvas::captureCanvasState() const {
415 SkCanvas* canvas = mCanvas;
416 if (mCanvasOwned) {
417 // Important to use the underlying SkCanvas, not the wrapper.
418 canvas = mCanvasOwned.get();
419 }
420
421 // Workarounds for http://crbug.com/271096: SW draw only supports
422 // translate & scale transforms, and a simple rectangular clip.
423 // (This also avoids significant wasted time in calling
424 // SkCanvasStateUtils::CaptureCanvasState when the clip is complex).
425 if (!canvas->isClipRect() ||
426 (canvas->getTotalMatrix().getType() &
427 ~(SkMatrix::kTranslate_Mask | SkMatrix::kScale_Mask))) {
428 return nullptr;
429 }
430
431 return SkCanvasStateUtils::CaptureCanvasState(canvas);
432}
433
434// ----------------------------------------------------------------------------
Derek Sollenberger8872b382014-06-23 14:13:53 -0400435// Canvas draw operations
436// ----------------------------------------------------------------------------
437
Mike Reed260ab722016-10-07 15:59:20 -0400438void SkiaCanvas::drawColor(int color, SkBlendMode mode) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400439 mCanvas->drawColor(color, mode);
440}
441
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400442void SkiaCanvas::drawPaint(const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400443 mCanvas->drawPaint(paint);
444}
445
446// ----------------------------------------------------------------------------
447// Canvas draw operations: Geometry
448// ----------------------------------------------------------------------------
449
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400450void SkiaCanvas::drawPoints(const float* points, int count, const SkPaint& paint,
Derek Sollenberger8872b382014-06-23 14:13:53 -0400451 SkCanvas::PointMode mode) {
Derek Sollenberger792fb322017-03-03 14:02:09 -0500452 if (CC_UNLIKELY(count < 2 || paint.nothingToDraw())) return;
Derek Sollenberger8872b382014-06-23 14:13:53 -0400453 // convert the floats into SkPoints
454 count >>= 1; // now it is the number of points
Ben Wagner6bbf68d2015-08-19 11:26:06 -0400455 std::unique_ptr<SkPoint[]> pts(new SkPoint[count]);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400456 for (int i = 0; i < count; i++) {
457 pts[i].set(points[0], points[1]);
458 points += 2;
459 }
Ben Wagner6bbf68d2015-08-19 11:26:06 -0400460 mCanvas->drawPoints(mode, count, pts.get(), paint);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400461}
462
463
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400464void SkiaCanvas::drawPoint(float x, float y, const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400465 mCanvas->drawPoint(x, y, paint);
466}
467
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400468void SkiaCanvas::drawPoints(const float* points, int count, const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400469 this->drawPoints(points, count, paint, SkCanvas::kPoints_PointMode);
470}
471
472void SkiaCanvas::drawLine(float startX, float startY, float stopX, float stopY,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400473 const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400474 mCanvas->drawLine(startX, startY, stopX, stopY, paint);
475}
476
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400477void SkiaCanvas::drawLines(const float* points, int count, const SkPaint& paint) {
Derek Sollenberger792fb322017-03-03 14:02:09 -0500478 if (CC_UNLIKELY(count < 4 || paint.nothingToDraw())) return;
Derek Sollenberger8872b382014-06-23 14:13:53 -0400479 this->drawPoints(points, count, paint, SkCanvas::kLines_PointMode);
480}
481
482void SkiaCanvas::drawRect(float left, float top, float right, float bottom,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400483 const SkPaint& paint) {
Derek Sollenberger792fb322017-03-03 14:02:09 -0500484 if (CC_UNLIKELY(paint.nothingToDraw())) return;
Derek Sollenberger8872b382014-06-23 14:13:53 -0400485 mCanvas->drawRectCoords(left, top, right, bottom, paint);
486
487}
488
Derek Sollenberger94394b32015-07-10 09:58:41 -0400489void SkiaCanvas::drawRegion(const SkRegion& region, const SkPaint& paint) {
Derek Sollenberger792fb322017-03-03 14:02:09 -0500490 if (CC_UNLIKELY(paint.nothingToDraw())) return;
Stan Ilievf50806a2016-10-24 10:40:39 -0400491 mCanvas->drawRegion(region, paint);
Derek Sollenberger94394b32015-07-10 09:58:41 -0400492}
493
Derek Sollenberger8872b382014-06-23 14:13:53 -0400494void SkiaCanvas::drawRoundRect(float left, float top, float right, float bottom,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400495 float rx, float ry, const SkPaint& paint) {
Derek Sollenberger792fb322017-03-03 14:02:09 -0500496 if (CC_UNLIKELY(paint.nothingToDraw())) return;
Derek Sollenberger8872b382014-06-23 14:13:53 -0400497 SkRect rect = SkRect::MakeLTRB(left, top, right, bottom);
498 mCanvas->drawRoundRect(rect, rx, ry, paint);
499}
500
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400501void SkiaCanvas::drawCircle(float x, float y, float radius, const SkPaint& paint) {
Derek Sollenberger792fb322017-03-03 14:02:09 -0500502 if (CC_UNLIKELY(radius <= 0 || paint.nothingToDraw())) return;
Derek Sollenberger8872b382014-06-23 14:13:53 -0400503 mCanvas->drawCircle(x, y, radius, paint);
504}
505
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400506void SkiaCanvas::drawOval(float left, float top, float right, float bottom, const SkPaint& paint) {
Derek Sollenberger792fb322017-03-03 14:02:09 -0500507 if (CC_UNLIKELY(paint.nothingToDraw())) return;
Derek Sollenberger8872b382014-06-23 14:13:53 -0400508 SkRect oval = SkRect::MakeLTRB(left, top, right, bottom);
509 mCanvas->drawOval(oval, paint);
510}
511
512void SkiaCanvas::drawArc(float left, float top, float right, float bottom,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400513 float startAngle, float sweepAngle, bool useCenter, const SkPaint& paint) {
Derek Sollenberger792fb322017-03-03 14:02:09 -0500514 if (CC_UNLIKELY(paint.nothingToDraw())) return;
Derek Sollenberger8872b382014-06-23 14:13:53 -0400515 SkRect arc = SkRect::MakeLTRB(left, top, right, bottom);
516 mCanvas->drawArc(arc, startAngle, sweepAngle, useCenter, paint);
517}
518
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400519void SkiaCanvas::drawPath(const SkPath& path, const SkPaint& paint) {
Derek Sollenberger792fb322017-03-03 14:02:09 -0500520 if (CC_UNLIKELY(paint.nothingToDraw())) return;
Derek Sollenbergerd7f13f82017-03-09 13:08:27 -0500521 mCanvas->drawPath(path, paint);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400522}
523
524void SkiaCanvas::drawVertices(SkCanvas::VertexMode vertexMode, int vertexCount,
525 const float* verts, const float* texs, const int* colors,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400526 const uint16_t* indices, int indexCount, const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400527#ifndef SK_SCALAR_IS_FLOAT
528 SkDEBUGFAIL("SkScalar must be a float for these conversions to be valid");
529#endif
530 const int ptCount = vertexCount >> 1;
Mike Reed871cd2d2017-03-17 10:15:52 -0400531 mCanvas->drawVertices(SkVertices::MakeCopy(vertexMode, ptCount, (SkPoint*)verts,
532 (SkPoint*)texs, (SkColor*)colors,
533 indexCount, indices),
534 SkBlendMode::kModulate, paint);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400535}
536
537// ----------------------------------------------------------------------------
538// Canvas draw operations: Bitmaps
539// ----------------------------------------------------------------------------
540
sergeyvaed7f582016-10-14 16:30:21 -0700541void SkiaCanvas::drawBitmap(Bitmap& bitmap, float left, float top, const SkPaint* paint) {
542 SkBitmap skBitmap;
543 bitmap.getSkBitmap(&skBitmap);
544 mCanvas->drawBitmap(skBitmap, left, top, paint);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400545}
546
sergeyvfc9999502016-10-17 13:07:38 -0700547void SkiaCanvas::drawBitmap(Bitmap& hwuiBitmap, const SkMatrix& matrix, const SkPaint* paint) {
548 SkBitmap bitmap;
549 hwuiBitmap.getSkBitmap(&bitmap);
Mike Reed6acfe162016-11-18 17:21:09 -0500550 SkAutoCanvasRestore acr(mCanvas, true);
Mike Reed70ffbf92014-12-08 17:03:30 -0500551 mCanvas->concat(matrix);
552 mCanvas->drawBitmap(bitmap, 0, 0, paint);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400553}
554
sergeyvfc9999502016-10-17 13:07:38 -0700555void SkiaCanvas::drawBitmap(Bitmap& hwuiBitmap, float srcLeft, float srcTop,
Derek Sollenberger8872b382014-06-23 14:13:53 -0400556 float srcRight, float srcBottom, float dstLeft, float dstTop,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400557 float dstRight, float dstBottom, const SkPaint* paint) {
sergeyvfc9999502016-10-17 13:07:38 -0700558 SkBitmap bitmap;
559 hwuiBitmap.getSkBitmap(&bitmap);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400560 SkRect srcRect = SkRect::MakeLTRB(srcLeft, srcTop, srcRight, srcBottom);
561 SkRect dstRect = SkRect::MakeLTRB(dstLeft, dstTop, dstRight, dstBottom);
Leon Scroggins IIIf35b9892015-07-31 10:38:40 -0400562 mCanvas->drawBitmapRect(bitmap, srcRect, dstRect, paint);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400563}
564
sergeyv5fd2a1c2016-10-20 15:04:28 -0700565void SkiaCanvas::drawBitmapMesh(Bitmap& hwuiBitmap, int meshWidth, int meshHeight,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400566 const float* vertices, const int* colors, const SkPaint* paint) {
sergeyv5fd2a1c2016-10-20 15:04:28 -0700567 SkBitmap bitmap;
568 hwuiBitmap.getSkBitmap(&bitmap);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400569 const int ptCount = (meshWidth + 1) * (meshHeight + 1);
570 const int indexCount = meshWidth * meshHeight * 6;
Mike Reed871cd2d2017-03-17 10:15:52 -0400571 uint32_t flags = SkVertices::kHasTexCoords_BuilderFlag;
572 if (colors) {
573 flags |= SkVertices::kHasColors_BuilderFlag;
574 }
575 SkVertices::Builder builder(SkCanvas::kTriangles_VertexMode, ptCount, indexCount, flags);
576 memcpy(builder.positions(), vertices, ptCount * sizeof(SkPoint));
577 if (colors) {
578 memcpy(builder.colors(), colors, ptCount * sizeof(SkColor));
579 }
580 SkPoint* texs = builder.texCoords();
581 uint16_t* indices = builder.indices();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400582
583 // cons up texture coordinates and indices
584 {
585 const SkScalar w = SkIntToScalar(bitmap.width());
586 const SkScalar h = SkIntToScalar(bitmap.height());
587 const SkScalar dx = w / meshWidth;
588 const SkScalar dy = h / meshHeight;
589
590 SkPoint* texsPtr = texs;
591 SkScalar y = 0;
592 for (int i = 0; i <= meshHeight; i++) {
593 if (i == meshHeight) {
594 y = h; // to ensure numerically we hit h exactly
595 }
596 SkScalar x = 0;
597 for (int j = 0; j < meshWidth; j++) {
598 texsPtr->set(x, y);
599 texsPtr += 1;
600 x += dx;
601 }
602 texsPtr->set(w, y);
603 texsPtr += 1;
604 y += dy;
605 }
606 SkASSERT(texsPtr - texs == ptCount);
607 }
608
609 // cons up indices
610 {
611 uint16_t* indexPtr = indices;
612 int index = 0;
613 for (int i = 0; i < meshHeight; i++) {
614 for (int j = 0; j < meshWidth; j++) {
615 // lower-left triangle
616 *indexPtr++ = index;
617 *indexPtr++ = index + meshWidth + 1;
618 *indexPtr++ = index + meshWidth + 2;
619 // upper-right triangle
620 *indexPtr++ = index;
621 *indexPtr++ = index + meshWidth + 2;
622 *indexPtr++ = index + 1;
623 // bump to the next cell
624 index += 1;
625 }
626 // bump to the next row
627 index += 1;
628 }
629 SkASSERT(indexPtr - indices == indexCount);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400630 }
631
632 // double-check that we have legal indices
633#ifdef SK_DEBUG
634 {
635 for (int i = 0; i < indexCount; i++) {
636 SkASSERT((unsigned)indices[i] < (unsigned)ptCount);
637 }
638 }
639#endif
640
641 // cons-up a shader for the bitmap
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400642 SkPaint tmpPaint;
Derek Sollenberger8872b382014-06-23 14:13:53 -0400643 if (paint) {
644 tmpPaint = *paint;
645 }
Stan Ilievf50806a2016-10-24 10:40:39 -0400646
647 sk_sp<SkImage> image = SkMakeImageFromRasterBitmap(bitmap, kNever_SkCopyPixelsMode);
648 tmpPaint.setShader(image->makeShader(SkShader::kClamp_TileMode, SkShader::kClamp_TileMode));
Derek Sollenberger8872b382014-06-23 14:13:53 -0400649
Mike Reed871cd2d2017-03-17 10:15:52 -0400650 mCanvas->drawVertices(builder.detach(), SkBlendMode::kModulate, tmpPaint);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400651}
652
sergeyv5fd2a1c2016-10-20 15:04:28 -0700653void SkiaCanvas::drawNinePatch(Bitmap& hwuiBitmap, const Res_png_9patch& chunk,
Derek Sollenbergeredca3202015-07-10 13:56:39 -0400654 float dstLeft, float dstTop, float dstRight, float dstBottom, const SkPaint* paint) {
Stan Ilievf50806a2016-10-24 10:40:39 -0400655
sergeyv5fd2a1c2016-10-20 15:04:28 -0700656 SkBitmap bitmap;
657 hwuiBitmap.getSkBitmap(&bitmap);
Stan Ilievf50806a2016-10-24 10:40:39 -0400658
659 SkCanvas::Lattice lattice;
Matt Sarett7de73852016-10-25 18:36:39 -0400660 NinePatchUtils::SetLatticeDivs(&lattice, chunk, bitmap.width(), bitmap.height());
Stan Ilievf50806a2016-10-24 10:40:39 -0400661
662 lattice.fFlags = nullptr;
663 int numFlags = 0;
Stan Iliev021693b2016-10-17 16:26:15 -0400664 if (chunk.numColors > 0 && chunk.numColors == NinePatchUtils::NumDistinctRects(lattice)) {
Stan Ilievf50806a2016-10-24 10:40:39 -0400665 // We can expect the framework to give us a color for every distinct rect.
666 // Skia requires a flag for every rect.
667 numFlags = (lattice.fXCount + 1) * (lattice.fYCount + 1);
668 }
669
670 SkAutoSTMalloc<25, SkCanvas::Lattice::Flags> flags(numFlags);
671 if (numFlags > 0) {
Stan Iliev021693b2016-10-17 16:26:15 -0400672 NinePatchUtils::SetLatticeFlags(&lattice, flags.get(), numFlags, chunk);
Stan Ilievf50806a2016-10-24 10:40:39 -0400673 }
674
675 lattice.fBounds = nullptr;
676 SkRect dst = SkRect::MakeLTRB(dstLeft, dstTop, dstRight, dstBottom);
677 mCanvas->drawBitmapLattice(bitmap, lattice, dst, paint);
Derek Sollenbergeredca3202015-07-10 13:56:39 -0400678}
679
Doris Liu766431a2016-02-04 22:17:11 +0000680void SkiaCanvas::drawVectorDrawable(VectorDrawableRoot* vectorDrawable) {
Doris Liu1d8e1942016-03-02 15:16:28 -0800681 vectorDrawable->drawStaging(this);
Doris Liu766431a2016-02-04 22:17:11 +0000682}
683
Derek Sollenberger8872b382014-06-23 14:13:53 -0400684// ----------------------------------------------------------------------------
685// Canvas draw operations: Text
686// ----------------------------------------------------------------------------
687
sergeyvdccca442016-03-21 15:38:21 -0700688void SkiaCanvas::drawGlyphs(const uint16_t* text, const float* positions, int count,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400689 const SkPaint& paint, float x, float y,
Tom Hudson8dfaa492014-12-09 15:03:44 -0500690 float boundsLeft, float boundsTop, float boundsRight, float boundsBottom,
691 float totalAdvance) {
Derek Sollenberger792fb322017-03-03 14:02:09 -0500692 if (!text || !positions || count <= 0 || paint.nothingToDraw()) return;
Stan Ilievf50806a2016-10-24 10:40:39 -0400693 // Set align to left for drawing, as we don't want individual
694 // glyphs centered or right-aligned; the offset above takes
695 // care of all alignment.
696 SkPaint paintCopy(paint);
697 paintCopy.setTextAlign(SkPaint::kLeft_Align);
698
699 SkRect bounds = SkRect::MakeLTRB(boundsLeft + x, boundsTop + y,
700 boundsRight + x, boundsBottom + y);
701
702 SkTextBlobBuilder builder;
703 const SkTextBlobBuilder::RunBuffer& buffer = builder.allocRunPos(paintCopy, count, &bounds);
704 // TODO: we could reduce the number of memcpy's if the this were exposed further up
705 // in the architecture.
706 memcpy(buffer.glyphs, text, count * sizeof(uint16_t));
707 memcpy(buffer.pos, positions, (count << 1) * sizeof(float));
708
709 sk_sp<SkTextBlob> textBlob(builder.make());
710 mCanvas->drawTextBlob(textBlob, 0, 0, paintCopy);
711 drawTextDecorations(x, y, totalAdvance, paintCopy);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400712}
713
Yuqian Liafc221492016-07-18 13:07:42 -0400714void SkiaCanvas::drawLayoutOnPath(const minikin::Layout& layout, float hOffset, float vOffset,
715 const SkPaint& paint, const SkPath& path, size_t start, size_t end) {
716 const int N = end - start;
Derek Sollenbergere547dd02016-11-09 11:55:59 -0500717 SkAutoSTMalloc<1024, uint8_t> storage(N * (sizeof(uint16_t) + sizeof(SkRSXform)));
Yuqian Liafc221492016-07-18 13:07:42 -0400718 SkRSXform* xform = (SkRSXform*)storage.get();
719 uint16_t* glyphs = (uint16_t*)(xform + N);
720 SkPathMeasure meas(path, false);
721
722 for (size_t i = start; i < end; i++) {
723 glyphs[i - start] = layout.getGlyphId(i);
724 float x = hOffset + layout.getX(i);
725 float y = vOffset + layout.getY(i);
726
727 SkPoint pos;
728 SkVector tan;
729 if (!meas.getPosTan(x, &pos, &tan)) {
730 pos.set(x, y);
731 tan.set(1, 0);
732 }
733 xform[i - start].fSCos = tan.x();
734 xform[i - start].fSSin = tan.y();
735 xform[i - start].fTx = pos.x() - tan.y() * y;
736 xform[i - start].fTy = pos.y() + tan.x() * y;
737 }
738
739 this->asSkCanvas()->drawTextRSXform(glyphs, sizeof(uint16_t) * N, xform, nullptr, paint);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400740}
741
Derek Sollenberger6f485562015-07-30 10:00:39 -0400742// ----------------------------------------------------------------------------
743// Canvas draw operations: Animations
744// ----------------------------------------------------------------------------
745
Derek Sollenberger6f485562015-07-30 10:00:39 -0400746void SkiaCanvas::drawRoundRect(uirenderer::CanvasPropertyPrimitive* left,
747 uirenderer::CanvasPropertyPrimitive* top, uirenderer::CanvasPropertyPrimitive* right,
748 uirenderer::CanvasPropertyPrimitive* bottom, uirenderer::CanvasPropertyPrimitive* rx,
749 uirenderer::CanvasPropertyPrimitive* ry, uirenderer::CanvasPropertyPaint* paint) {
Stan Iliev021693b2016-10-17 16:26:15 -0400750 sk_sp<uirenderer::skiapipeline::AnimatedRoundRect> drawable(
751 new uirenderer::skiapipeline::AnimatedRoundRect(left, top, right, bottom, rx, ry, paint));
Derek Sollenberger6f485562015-07-30 10:00:39 -0400752 mCanvas->drawDrawable(drawable.get());
753}
754
755void SkiaCanvas::drawCircle(uirenderer::CanvasPropertyPrimitive* x, uirenderer::CanvasPropertyPrimitive* y,
756 uirenderer::CanvasPropertyPrimitive* radius, uirenderer::CanvasPropertyPaint* paint) {
Stan Iliev021693b2016-10-17 16:26:15 -0400757 sk_sp<uirenderer::skiapipeline::AnimatedCircle> drawable(new uirenderer::skiapipeline::AnimatedCircle(x, y, radius, paint));
Derek Sollenberger6f485562015-07-30 10:00:39 -0400758 mCanvas->drawDrawable(drawable.get());
759}
760
761// ----------------------------------------------------------------------------
762// Canvas draw operations: View System
763// ----------------------------------------------------------------------------
764
Stan Ilievf50806a2016-10-24 10:40:39 -0400765void SkiaCanvas::drawLayer(uirenderer::DeferredLayerUpdater* layerUpdater) {
Derek Sollenbergerc1908132016-07-15 10:28:16 -0400766 LOG_ALWAYS_FATAL("SkiaCanvas can't directly draw Layers");
767}
Derek Sollenberger6f485562015-07-30 10:00:39 -0400768
Derek Sollenbergerc1908132016-07-15 10:28:16 -0400769void SkiaCanvas::drawRenderNode(uirenderer::RenderNode* renderNode) {
770 LOG_ALWAYS_FATAL("SkiaCanvas can't directly draw RenderNodes");
771}
Derek Sollenberger6f485562015-07-30 10:00:39 -0400772
John Reckcd1c3eb2016-04-14 10:38:54 -0700773void SkiaCanvas::callDrawGLFunction(Functor* functor,
Derek Sollenbergerc1908132016-07-15 10:28:16 -0400774 uirenderer::GlFunctorLifecycleListener* listener) {
775 LOG_ALWAYS_FATAL("SkiaCanvas can't directly draw GL Content");
776}
Derek Sollenberger6f485562015-07-30 10:00:39 -0400777
Derek Sollenberger8872b382014-06-23 14:13:53 -0400778} // namespace android