blob: 96c1a7c18db9147f8388df4b6c5c4ce41252fa5d [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 Sollenberger8872b382014-06-23 14:13:53 -040017#include "Canvas.h"
Derek Sollenberger8872b382014-06-23 14:13:53 -040018
John Reck849911a2015-01-20 07:51:14 -080019#include <SkCanvas.h>
20#include <SkClipStack.h>
21#include <SkDevice.h>
22#include <SkDeque.h>
23#include <SkDrawFilter.h>
24#include <SkGraphics.h>
John Reck849911a2015-01-20 07:51:14 -080025#include <SkShader.h>
26#include <SkTArray.h>
27#include <SkTemplates.h>
Derek Sollenberger8872b382014-06-23 14:13:53 -040028
Ben Wagner60126ef2015-08-07 12:13:48 -040029#include <memory>
30
Derek Sollenberger8872b382014-06-23 14:13:53 -040031namespace android {
32
33// Holds an SkCanvas reference plus additional native data.
34class SkiaCanvas : public Canvas {
35public:
John Reckc1b33d62015-04-22 09:04:45 -070036 explicit SkiaCanvas(const SkBitmap& bitmap);
Derek Sollenberger8872b382014-06-23 14:13:53 -040037
Leon Scroggins III18981292014-12-17 11:30:31 -050038 /**
39 * Create a new SkiaCanvas.
40 *
41 * @param canvas SkCanvas to handle calls made to this SkiaCanvas. Must
42 * not be NULL. This constructor will ref() the SkCanvas, and unref()
43 * it in its destructor.
44 */
45 explicit SkiaCanvas(SkCanvas* canvas) : mCanvas(canvas) {
Derek Sollenberger8872b382014-06-23 14:13:53 -040046 SkASSERT(canvas);
Leon Scroggins III18981292014-12-17 11:30:31 -050047 canvas->ref();
Derek Sollenberger8872b382014-06-23 14:13:53 -040048 }
49
Derek Sollenbergerb3d50e02015-01-29 11:19:31 -050050 virtual SkCanvas* asSkCanvas() override {
Derek Sollenberger8872b382014-06-23 14:13:53 -040051 return mCanvas.get();
52 }
53
John Reckc1b33d62015-04-22 09:04:45 -070054 virtual void setBitmap(const SkBitmap& bitmap) override;
Derek Sollenberger8872b382014-06-23 14:13:53 -040055
Derek Sollenbergerb3d50e02015-01-29 11:19:31 -050056 virtual bool isOpaque() override;
57 virtual int width() override;
58 virtual int height() override;
Derek Sollenberger8872b382014-06-23 14:13:53 -040059
Derek Sollenberger6578a982015-07-13 13:24:29 -040060 virtual void setHighContrastText(bool highContrastText) override {
61 mHighContrastText = highContrastText;
62 }
63 virtual bool isHighContrastText() override { return mHighContrastText; }
64
Derek Sollenbergerb3d50e02015-01-29 11:19:31 -050065 virtual int getSaveCount() const override;
66 virtual int save(SkCanvas::SaveFlags flags) override;
67 virtual void restore() override;
68 virtual void restoreToCount(int saveCount) override;
Derek Sollenberger8872b382014-06-23 14:13:53 -040069
70 virtual int saveLayer(float left, float top, float right, float bottom,
Derek Sollenbergerb3d50e02015-01-29 11:19:31 -050071 const SkPaint* paint, SkCanvas::SaveFlags flags) override;
Derek Sollenberger8872b382014-06-23 14:13:53 -040072 virtual int saveLayerAlpha(float left, float top, float right, float bottom,
Derek Sollenbergerb3d50e02015-01-29 11:19:31 -050073 int alpha, SkCanvas::SaveFlags flags) override;
Derek Sollenberger8872b382014-06-23 14:13:53 -040074
Derek Sollenbergerb3d50e02015-01-29 11:19:31 -050075 virtual void getMatrix(SkMatrix* outMatrix) const override;
76 virtual void setMatrix(const SkMatrix& matrix) override;
77 virtual void concat(const SkMatrix& matrix) override;
78 virtual void rotate(float degrees) override;
79 virtual void scale(float sx, float sy) override;
80 virtual void skew(float sx, float sy) override;
81 virtual void translate(float dx, float dy) override;
Derek Sollenberger8872b382014-06-23 14:13:53 -040082
Derek Sollenbergerb3d50e02015-01-29 11:19:31 -050083 virtual bool getClipBounds(SkRect* outRect) const override;
84 virtual bool quickRejectRect(float left, float top, float right, float bottom) const override;
85 virtual bool quickRejectPath(const SkPath& path) const override;
86 virtual bool clipRect(float left, float top, float right, float bottom,
87 SkRegion::Op op) override;
88 virtual bool clipPath(const SkPath* path, SkRegion::Op op) override;
89 virtual bool clipRegion(const SkRegion* region, SkRegion::Op op) override;
Derek Sollenberger8872b382014-06-23 14:13:53 -040090
Derek Sollenbergerb3d50e02015-01-29 11:19:31 -050091 virtual SkDrawFilter* getDrawFilter() override;
92 virtual void setDrawFilter(SkDrawFilter* drawFilter) override;
Derek Sollenberger8872b382014-06-23 14:13:53 -040093
Derek Sollenbergerb3d50e02015-01-29 11:19:31 -050094 virtual void drawColor(int color, SkXfermode::Mode mode) override;
95 virtual void drawPaint(const SkPaint& paint) override;
Derek Sollenberger8872b382014-06-23 14:13:53 -040096
Derek Sollenbergerb3d50e02015-01-29 11:19:31 -050097 virtual void drawPoint(float x, float y, const SkPaint& paint) override;
98 virtual void drawPoints(const float* points, int count, const SkPaint& paint) override;
Derek Sollenberger8872b382014-06-23 14:13:53 -040099 virtual void drawLine(float startX, float startY, float stopX, float stopY,
Derek Sollenbergerb3d50e02015-01-29 11:19:31 -0500100 const SkPaint& paint) override;
101 virtual void drawLines(const float* points, int count, const SkPaint& paint) override;
102 virtual void drawRect(float left, float top, float right, float bottom,
103 const SkPaint& paint) override;
Derek Sollenberger94394b32015-07-10 09:58:41 -0400104 virtual void drawRegion(const SkRegion& region, const SkPaint& paint) override;
Derek Sollenberger8872b382014-06-23 14:13:53 -0400105 virtual void drawRoundRect(float left, float top, float right, float bottom,
Derek Sollenbergerb3d50e02015-01-29 11:19:31 -0500106 float rx, float ry, const SkPaint& paint) override;
107 virtual void drawCircle(float x, float y, float radius, const SkPaint& paint) override;
108 virtual void drawOval(float left, float top, float right, float bottom,
109 const SkPaint& paint) override;
Derek Sollenberger8872b382014-06-23 14:13:53 -0400110 virtual void drawArc(float left, float top, float right, float bottom,
Derek Sollenbergerb3d50e02015-01-29 11:19:31 -0500111 float startAngle, float sweepAngle, bool useCenter, const SkPaint& paint) override;
112 virtual void drawPath(const SkPath& path, const SkPaint& paint) override;
Derek Sollenberger8872b382014-06-23 14:13:53 -0400113 virtual void drawVertices(SkCanvas::VertexMode vertexMode, int vertexCount,
114 const float* verts, const float* tex, const int* colors,
Derek Sollenbergerb3d50e02015-01-29 11:19:31 -0500115 const uint16_t* indices, int indexCount, const SkPaint& paint) override;
Derek Sollenberger8872b382014-06-23 14:13:53 -0400116
Derek Sollenbergerb3d50e02015-01-29 11:19:31 -0500117 virtual void drawBitmap(const SkBitmap& bitmap, float left, float top,
118 const SkPaint* paint) override;
119 virtual void drawBitmap(const SkBitmap& bitmap, const SkMatrix& matrix,
120 const SkPaint* paint) override;
Derek Sollenberger8872b382014-06-23 14:13:53 -0400121 virtual void drawBitmap(const SkBitmap& bitmap, float srcLeft, float srcTop,
122 float srcRight, float srcBottom, float dstLeft, float dstTop,
Derek Sollenbergerb3d50e02015-01-29 11:19:31 -0500123 float dstRight, float dstBottom, const SkPaint* paint) override;
Derek Sollenberger8872b382014-06-23 14:13:53 -0400124 virtual void drawBitmapMesh(const SkBitmap& bitmap, int meshWidth, int meshHeight,
Derek Sollenbergerb3d50e02015-01-29 11:19:31 -0500125 const float* vertices, const int* colors, const SkPaint* paint) override;
Derek Sollenbergeredca3202015-07-10 13:56:39 -0400126 virtual void drawNinePatch(const SkBitmap& bitmap, const android::Res_png_9patch& chunk,
127 float dstLeft, float dstTop, float dstRight, float dstBottom,
128 const SkPaint* paint) override;
Derek Sollenberger8872b382014-06-23 14:13:53 -0400129
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400130 virtual void drawText(const uint16_t* text, const float* positions, int count,
131 const SkPaint& paint, float x, float y,
Tom Hudson8dfaa492014-12-09 15:03:44 -0500132 float boundsLeft, float boundsTop, float boundsRight, float boundsBottom,
Derek Sollenbergerb3d50e02015-01-29 11:19:31 -0500133 float totalAdvance) override;
Derek Sollenberger8872b382014-06-23 14:13:53 -0400134 virtual void drawTextOnPath(const uint16_t* glyphs, int count, const SkPath& path,
Derek Sollenbergerb3d50e02015-01-29 11:19:31 -0500135 float hOffset, float vOffset, const SkPaint& paint) override;
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400136
Derek Sollenbergerb3d50e02015-01-29 11:19:31 -0500137 virtual bool drawTextAbsolutePos() const override { return true; }
Derek Sollenberger8872b382014-06-23 14:13:53 -0400138
139private:
140 struct SaveRec {
141 int saveCount;
142 SkCanvas::SaveFlags saveFlags;
143 };
144
Derek Sollenberger6578a982015-07-13 13:24:29 -0400145 bool mHighContrastText = false;
146
Derek Sollenberger8872b382014-06-23 14:13:53 -0400147 void recordPartialSave(SkCanvas::SaveFlags flags);
148 void saveClipsForFrame(SkTArray<SkClipStack::Element>& clips, int frameSaveCount);
149 void applyClips(const SkTArray<SkClipStack::Element>& clips);
150
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400151 void drawPoints(const float* points, int count, const SkPaint& paint,
Derek Sollenberger8872b382014-06-23 14:13:53 -0400152 SkCanvas::PointMode mode);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400153
154 SkAutoTUnref<SkCanvas> mCanvas;
Ben Wagner60126ef2015-08-07 12:13:48 -0400155 std::unique_ptr<SkDeque> mSaveStack; // lazily allocated, tracks partial saves.
Derek Sollenberger8872b382014-06-23 14:13:53 -0400156};
157
John Reckc1b33d62015-04-22 09:04:45 -0700158Canvas* Canvas::create_canvas(const SkBitmap& bitmap) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400159 return new SkiaCanvas(bitmap);
160}
161
162Canvas* Canvas::create_canvas(SkCanvas* skiaCanvas) {
163 return new SkiaCanvas(skiaCanvas);
164}
165
John Reckc1b33d62015-04-22 09:04:45 -0700166SkiaCanvas::SkiaCanvas(const SkBitmap& bitmap) {
167 mCanvas.reset(new SkCanvas(bitmap));
Derek Sollenberger8872b382014-06-23 14:13:53 -0400168}
169
170// ----------------------------------------------------------------------------
171// Canvas state operations: Replace Bitmap
172// ----------------------------------------------------------------------------
173
174class ClipCopier : public SkCanvas::ClipVisitor {
175public:
176 ClipCopier(SkCanvas* dstCanvas) : m_dstCanvas(dstCanvas) {}
177
178 virtual void clipRect(const SkRect& rect, SkRegion::Op op, bool antialias) {
179 m_dstCanvas->clipRect(rect, op, antialias);
180 }
181 virtual void clipRRect(const SkRRect& rrect, SkRegion::Op op, bool antialias) {
182 m_dstCanvas->clipRRect(rrect, op, antialias);
183 }
184 virtual void clipPath(const SkPath& path, SkRegion::Op op, bool antialias) {
185 m_dstCanvas->clipPath(path, op, antialias);
186 }
187
188private:
189 SkCanvas* m_dstCanvas;
190};
191
John Reckc1b33d62015-04-22 09:04:45 -0700192void SkiaCanvas::setBitmap(const SkBitmap& bitmap) {
193 SkCanvas* newCanvas = new SkCanvas(bitmap);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400194
John Reckc1b33d62015-04-22 09:04:45 -0700195 if (!bitmap.isNull()) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400196 // Copy the canvas matrix & clip state.
197 newCanvas->setMatrix(mCanvas->getTotalMatrix());
Leon Scroggins IIIf35b9892015-07-31 10:38:40 -0400198
199 ClipCopier copier(newCanvas);
200 mCanvas->replayClips(&copier);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400201 }
202
203 // unrefs the existing canvas
204 mCanvas.reset(newCanvas);
205
206 // clean up the old save stack
207 mSaveStack.reset(NULL);
208}
209
210// ----------------------------------------------------------------------------
211// Canvas state operations
212// ----------------------------------------------------------------------------
213
214bool SkiaCanvas::isOpaque() {
Leon Scroggins IIIf35b9892015-07-31 10:38:40 -0400215 return mCanvas->imageInfo().isOpaque();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400216}
217
218int SkiaCanvas::width() {
Leon Scroggins IIIf35b9892015-07-31 10:38:40 -0400219 return mCanvas->imageInfo().width();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400220}
221
222int SkiaCanvas::height() {
Leon Scroggins IIIf35b9892015-07-31 10:38:40 -0400223 return mCanvas->imageInfo().height();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400224}
225
226// ----------------------------------------------------------------------------
227// Canvas state operations: Save (layer)
228// ----------------------------------------------------------------------------
229
230int SkiaCanvas::getSaveCount() const {
231 return mCanvas->getSaveCount();
232}
233
234int SkiaCanvas::save(SkCanvas::SaveFlags flags) {
235 int count = mCanvas->save();
236 recordPartialSave(flags);
237 return count;
238}
239
Florin Malita5e271402015-11-04 14:36:02 -0500240// The SkiaCanvas::restore operation layers on the capability to preserve
241// either (or both) the matrix and/or clip state after a SkCanvas::restore
242// operation. It does this by explicitly saving off the clip & matrix state
243// when requested and playing it back after the SkCanvas::restore.
Derek Sollenberger8872b382014-06-23 14:13:53 -0400244void SkiaCanvas::restore() {
245 const SaveRec* rec = (NULL == mSaveStack.get())
246 ? NULL
247 : static_cast<SaveRec*>(mSaveStack->back());
Florin Malita5e271402015-11-04 14:36:02 -0500248 int currentSaveCount = mCanvas->getSaveCount();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400249 SkASSERT(NULL == rec || currentSaveCount >= rec->saveCount);
250
251 if (NULL == rec || rec->saveCount != currentSaveCount) {
252 // Fast path - no record for this frame.
253 mCanvas->restore();
254 return;
255 }
256
257 bool preserveMatrix = !(rec->saveFlags & SkCanvas::kMatrix_SaveFlag);
258 bool preserveClip = !(rec->saveFlags & SkCanvas::kClip_SaveFlag);
259
260 SkMatrix savedMatrix;
261 if (preserveMatrix) {
262 savedMatrix = mCanvas->getTotalMatrix();
263 }
264
265 SkTArray<SkClipStack::Element> savedClips;
Florin Malita5e271402015-11-04 14:36:02 -0500266 int topClipStackFrame = mCanvas->getClipStack()->getSaveCount();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400267 if (preserveClip) {
Florin Malita5e271402015-11-04 14:36:02 -0500268 saveClipsForFrame(savedClips, topClipStackFrame);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400269 }
270
271 mCanvas->restore();
272
273 if (preserveMatrix) {
274 mCanvas->setMatrix(savedMatrix);
275 }
276
Florin Malita5e271402015-11-04 14:36:02 -0500277 if (preserveClip && !savedClips.empty() &&
278 topClipStackFrame != mCanvas->getClipStack()->getSaveCount()) {
279 // Only reapply the saved clips if the top clip stack frame was actually
280 // popped by restore(). If it wasn't, it means it doesn't belong to the
281 // restored canvas frame (SkCanvas lazy save/restore kicked in).
Derek Sollenberger8872b382014-06-23 14:13:53 -0400282 applyClips(savedClips);
283 }
284
285 mSaveStack->pop_back();
286}
287
288void SkiaCanvas::restoreToCount(int restoreCount) {
289 while (mCanvas->getSaveCount() > restoreCount) {
290 this->restore();
291 }
292}
293
294int SkiaCanvas::saveLayer(float left, float top, float right, float bottom,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400295 const SkPaint* paint, SkCanvas::SaveFlags flags) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400296 SkRect bounds = SkRect::MakeLTRB(left, top, right, bottom);
297 int count = mCanvas->saveLayer(&bounds, paint, flags | SkCanvas::kMatrixClip_SaveFlag);
298 recordPartialSave(flags);
299 return count;
300}
301
302int SkiaCanvas::saveLayerAlpha(float left, float top, float right, float bottom,
303 int alpha, SkCanvas::SaveFlags flags) {
304 SkRect bounds = SkRect::MakeLTRB(left, top, right, bottom);
305 int count = mCanvas->saveLayerAlpha(&bounds, alpha, flags | SkCanvas::kMatrixClip_SaveFlag);
306 recordPartialSave(flags);
307 return count;
308}
309
310// ----------------------------------------------------------------------------
311// functions to emulate legacy SaveFlags (i.e. independent matrix/clip flags)
312// ----------------------------------------------------------------------------
313
314void SkiaCanvas::recordPartialSave(SkCanvas::SaveFlags flags) {
315 // A partial save is a save operation which doesn't capture the full canvas state.
316 // (either kMatrix_SaveFlags or kClip_SaveFlag is missing).
317
318 // Mask-out non canvas state bits.
319 flags = static_cast<SkCanvas::SaveFlags>(flags & SkCanvas::kMatrixClip_SaveFlag);
320
321 if (SkCanvas::kMatrixClip_SaveFlag == flags) {
322 // not a partial save.
323 return;
324 }
325
326 if (NULL == mSaveStack.get()) {
Ben Wagnerd1cbc162015-08-19 12:45:09 -0400327 mSaveStack.reset(new SkDeque(sizeof(struct SaveRec), 8));
Derek Sollenberger8872b382014-06-23 14:13:53 -0400328 }
329
330 SaveRec* rec = static_cast<SaveRec*>(mSaveStack->push_back());
Florin Malita5e271402015-11-04 14:36:02 -0500331 rec->saveCount = mCanvas->getSaveCount();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400332 rec->saveFlags = flags;
333}
334
Florin Malita5e271402015-11-04 14:36:02 -0500335void SkiaCanvas::saveClipsForFrame(SkTArray<SkClipStack::Element>& clips,
336 int saveCountToBackup) {
337 // Each SkClipStack::Element stores the index of the canvas save
338 // with which it is associated. Backup only those Elements that
339 // are associated with 'saveCountToBackup'
Derek Sollenberger8872b382014-06-23 14:13:53 -0400340 SkClipStack::Iter clipIterator(*mCanvas->getClipStack(),
341 SkClipStack::Iter::kTop_IterStart);
Florin Malita5e271402015-11-04 14:36:02 -0500342 while (const SkClipStack::Element* elem = clipIterator.prev()) {
343 if (elem->getSaveCount() < saveCountToBackup) {
344 // done with the target save count.
Derek Sollenberger8872b382014-06-23 14:13:53 -0400345 break;
346 }
Florin Malita5e271402015-11-04 14:36:02 -0500347 SkASSERT(elem->getSaveCount() == saveCountToBackup);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400348 clips.push_back(*elem);
349 }
350}
351
352void SkiaCanvas::applyClips(const SkTArray<SkClipStack::Element>& clips) {
353 ClipCopier clipCopier(mCanvas);
354
355 // The clip stack stores clips in device space.
356 SkMatrix origMatrix = mCanvas->getTotalMatrix();
357 mCanvas->resetMatrix();
358
359 // We pushed the clips in reverse order.
360 for (int i = clips.count() - 1; i >= 0; --i) {
361 clips[i].replay(&clipCopier);
362 }
363
364 mCanvas->setMatrix(origMatrix);
365}
366
367// ----------------------------------------------------------------------------
368// Canvas state operations: Matrix
369// ----------------------------------------------------------------------------
370
371void SkiaCanvas::getMatrix(SkMatrix* outMatrix) const {
372 *outMatrix = mCanvas->getTotalMatrix();
373}
374
375void SkiaCanvas::setMatrix(const SkMatrix& matrix) {
376 mCanvas->setMatrix(matrix);
377}
378
379void SkiaCanvas::concat(const SkMatrix& matrix) {
380 mCanvas->concat(matrix);
381}
382
383void SkiaCanvas::rotate(float degrees) {
384 mCanvas->rotate(degrees);
385}
386
387void SkiaCanvas::scale(float sx, float sy) {
388 mCanvas->scale(sx, sy);
389}
390
391void SkiaCanvas::skew(float sx, float sy) {
392 mCanvas->skew(sx, sy);
393}
394
395void SkiaCanvas::translate(float dx, float dy) {
396 mCanvas->translate(dx, dy);
397}
398
399// ----------------------------------------------------------------------------
400// Canvas state operations: Clips
401// ----------------------------------------------------------------------------
402
403// This function is a mirror of SkCanvas::getClipBounds except that it does
404// not outset the edge of the clip to account for anti-aliasing. There is
405// a skia bug to investigate pushing this logic into back into skia.
406// (see https://code.google.com/p/skia/issues/detail?id=1303)
407bool SkiaCanvas::getClipBounds(SkRect* outRect) const {
408 SkIRect ibounds;
409 if (!mCanvas->getClipDeviceBounds(&ibounds)) {
410 return false;
411 }
412
413 SkMatrix inverse;
414 // if we can't invert the CTM, we can't return local clip bounds
415 if (!mCanvas->getTotalMatrix().invert(&inverse)) {
416 if (outRect) {
417 outRect->setEmpty();
418 }
419 return false;
420 }
421
422 if (NULL != outRect) {
423 SkRect r = SkRect::Make(ibounds);
424 inverse.mapRect(outRect, r);
425 }
426 return true;
427}
428
429bool SkiaCanvas::quickRejectRect(float left, float top, float right, float bottom) const {
430 SkRect bounds = SkRect::MakeLTRB(left, top, right, bottom);
431 return mCanvas->quickReject(bounds);
432}
433
434bool SkiaCanvas::quickRejectPath(const SkPath& path) const {
435 return mCanvas->quickReject(path);
436}
437
438bool SkiaCanvas::clipRect(float left, float top, float right, float bottom, SkRegion::Op op) {
439 SkRect rect = SkRect::MakeLTRB(left, top, right, bottom);
440 mCanvas->clipRect(rect, op);
Chris Craik5ec6a282015-06-23 15:42:12 -0700441 return !mCanvas->isClipEmpty();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400442}
443
444bool SkiaCanvas::clipPath(const SkPath* path, SkRegion::Op op) {
445 mCanvas->clipPath(*path, op);
Chris Craik5ec6a282015-06-23 15:42:12 -0700446 return !mCanvas->isClipEmpty();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400447}
448
449bool SkiaCanvas::clipRegion(const SkRegion* region, SkRegion::Op op) {
450 SkPath rgnPath;
451 if (region->getBoundaryPath(&rgnPath)) {
452 // The region is specified in device space.
453 SkMatrix savedMatrix = mCanvas->getTotalMatrix();
454 mCanvas->resetMatrix();
455 mCanvas->clipPath(rgnPath, op);
456 mCanvas->setMatrix(savedMatrix);
457 } else {
458 mCanvas->clipRect(SkRect::MakeEmpty(), op);
459 }
Chris Craik5ec6a282015-06-23 15:42:12 -0700460 return !mCanvas->isClipEmpty();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400461}
462
463// ----------------------------------------------------------------------------
464// Canvas state operations: Filters
465// ----------------------------------------------------------------------------
466
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400467SkDrawFilter* SkiaCanvas::getDrawFilter() {
468 return mCanvas->getDrawFilter();
469}
470
Derek Sollenberger8872b382014-06-23 14:13:53 -0400471void SkiaCanvas::setDrawFilter(SkDrawFilter* drawFilter) {
472 mCanvas->setDrawFilter(drawFilter);
473}
474
475// ----------------------------------------------------------------------------
476// Canvas draw operations
477// ----------------------------------------------------------------------------
478
479void SkiaCanvas::drawColor(int color, SkXfermode::Mode mode) {
480 mCanvas->drawColor(color, mode);
481}
482
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400483void SkiaCanvas::drawPaint(const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400484 mCanvas->drawPaint(paint);
485}
486
487// ----------------------------------------------------------------------------
488// Canvas draw operations: Geometry
489// ----------------------------------------------------------------------------
490
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400491void SkiaCanvas::drawPoints(const float* points, int count, const SkPaint& paint,
Derek Sollenberger8872b382014-06-23 14:13:53 -0400492 SkCanvas::PointMode mode) {
493 // convert the floats into SkPoints
494 count >>= 1; // now it is the number of points
Ben Wagner6bbf68d2015-08-19 11:26:06 -0400495 std::unique_ptr<SkPoint[]> pts(new SkPoint[count]);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400496 for (int i = 0; i < count; i++) {
497 pts[i].set(points[0], points[1]);
498 points += 2;
499 }
Ben Wagner6bbf68d2015-08-19 11:26:06 -0400500 mCanvas->drawPoints(mode, count, pts.get(), paint);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400501}
502
503
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400504void SkiaCanvas::drawPoint(float x, float y, const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400505 mCanvas->drawPoint(x, y, paint);
506}
507
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400508void SkiaCanvas::drawPoints(const float* points, int count, const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400509 this->drawPoints(points, count, paint, SkCanvas::kPoints_PointMode);
510}
511
512void SkiaCanvas::drawLine(float startX, float startY, float stopX, float stopY,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400513 const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400514 mCanvas->drawLine(startX, startY, stopX, stopY, paint);
515}
516
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400517void SkiaCanvas::drawLines(const float* points, int count, const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400518 this->drawPoints(points, count, paint, SkCanvas::kLines_PointMode);
519}
520
521void SkiaCanvas::drawRect(float left, float top, float right, float bottom,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400522 const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400523 mCanvas->drawRectCoords(left, top, right, bottom, paint);
524
525}
526
Derek Sollenberger94394b32015-07-10 09:58:41 -0400527void SkiaCanvas::drawRegion(const SkRegion& region, const SkPaint& paint) {
528 SkRegion::Iterator it(region);
529 while (!it.done()) {
530 mCanvas->drawRect(SkRect::Make(it.rect()), paint);
531 it.next();
532 }
533}
534
Derek Sollenberger8872b382014-06-23 14:13:53 -0400535void SkiaCanvas::drawRoundRect(float left, float top, float right, float bottom,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400536 float rx, float ry, const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400537 SkRect rect = SkRect::MakeLTRB(left, top, right, bottom);
538 mCanvas->drawRoundRect(rect, rx, ry, paint);
539}
540
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400541void SkiaCanvas::drawCircle(float x, float y, float radius, const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400542 mCanvas->drawCircle(x, y, radius, paint);
543}
544
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400545void SkiaCanvas::drawOval(float left, float top, float right, float bottom, const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400546 SkRect oval = SkRect::MakeLTRB(left, top, right, bottom);
547 mCanvas->drawOval(oval, paint);
548}
549
550void SkiaCanvas::drawArc(float left, float top, float right, float bottom,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400551 float startAngle, float sweepAngle, bool useCenter, const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400552 SkRect arc = SkRect::MakeLTRB(left, top, right, bottom);
553 mCanvas->drawArc(arc, startAngle, sweepAngle, useCenter, paint);
554}
555
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400556void SkiaCanvas::drawPath(const SkPath& path, const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400557 mCanvas->drawPath(path, paint);
558}
559
560void SkiaCanvas::drawVertices(SkCanvas::VertexMode vertexMode, int vertexCount,
561 const float* verts, const float* texs, const int* colors,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400562 const uint16_t* indices, int indexCount, const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400563#ifndef SK_SCALAR_IS_FLOAT
564 SkDEBUGFAIL("SkScalar must be a float for these conversions to be valid");
565#endif
566 const int ptCount = vertexCount >> 1;
567 mCanvas->drawVertices(vertexMode, ptCount, (SkPoint*)verts, (SkPoint*)texs,
568 (SkColor*)colors, NULL, indices, indexCount, paint);
569}
570
571// ----------------------------------------------------------------------------
572// Canvas draw operations: Bitmaps
573// ----------------------------------------------------------------------------
574
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400575void SkiaCanvas::drawBitmap(const SkBitmap& bitmap, float left, float top, const SkPaint* paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400576 mCanvas->drawBitmap(bitmap, left, top, paint);
577}
578
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400579void SkiaCanvas::drawBitmap(const SkBitmap& bitmap, const SkMatrix& matrix, const SkPaint* paint) {
Mike Reed70ffbf92014-12-08 17:03:30 -0500580 SkAutoCanvasRestore acr(mCanvas, true);
581 mCanvas->concat(matrix);
582 mCanvas->drawBitmap(bitmap, 0, 0, paint);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400583}
584
585void SkiaCanvas::drawBitmap(const SkBitmap& bitmap, float srcLeft, float srcTop,
586 float srcRight, float srcBottom, float dstLeft, float dstTop,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400587 float dstRight, float dstBottom, const SkPaint* paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400588 SkRect srcRect = SkRect::MakeLTRB(srcLeft, srcTop, srcRight, srcBottom);
589 SkRect dstRect = SkRect::MakeLTRB(dstLeft, dstTop, dstRight, dstBottom);
Leon Scroggins IIIf35b9892015-07-31 10:38:40 -0400590 mCanvas->drawBitmapRect(bitmap, srcRect, dstRect, paint);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400591}
592
593void SkiaCanvas::drawBitmapMesh(const SkBitmap& bitmap, int meshWidth, int meshHeight,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400594 const float* vertices, const int* colors, const SkPaint* paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400595
596 const int ptCount = (meshWidth + 1) * (meshHeight + 1);
597 const int indexCount = meshWidth * meshHeight * 6;
598
599 /* Our temp storage holds 2 or 3 arrays.
600 texture points [ptCount * sizeof(SkPoint)]
601 optionally vertex points [ptCount * sizeof(SkPoint)] if we need a
602 copy to convert from float to fixed
603 indices [ptCount * sizeof(uint16_t)]
604 */
605 ssize_t storageSize = ptCount * sizeof(SkPoint); // texs[]
606 storageSize += indexCount * sizeof(uint16_t); // indices[]
607
608
609#ifndef SK_SCALAR_IS_FLOAT
610 SkDEBUGFAIL("SkScalar must be a float for these conversions to be valid");
611#endif
Ben Wagner6bbf68d2015-08-19 11:26:06 -0400612 std::unique_ptr<char[]> storage(new char[storageSize]);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400613 SkPoint* texs = (SkPoint*)storage.get();
614 uint16_t* indices = (uint16_t*)(texs + ptCount);
615
616 // cons up texture coordinates and indices
617 {
618 const SkScalar w = SkIntToScalar(bitmap.width());
619 const SkScalar h = SkIntToScalar(bitmap.height());
620 const SkScalar dx = w / meshWidth;
621 const SkScalar dy = h / meshHeight;
622
623 SkPoint* texsPtr = texs;
624 SkScalar y = 0;
625 for (int i = 0; i <= meshHeight; i++) {
626 if (i == meshHeight) {
627 y = h; // to ensure numerically we hit h exactly
628 }
629 SkScalar x = 0;
630 for (int j = 0; j < meshWidth; j++) {
631 texsPtr->set(x, y);
632 texsPtr += 1;
633 x += dx;
634 }
635 texsPtr->set(w, y);
636 texsPtr += 1;
637 y += dy;
638 }
639 SkASSERT(texsPtr - texs == ptCount);
640 }
641
642 // cons up indices
643 {
644 uint16_t* indexPtr = indices;
645 int index = 0;
646 for (int i = 0; i < meshHeight; i++) {
647 for (int j = 0; j < meshWidth; j++) {
648 // lower-left triangle
649 *indexPtr++ = index;
650 *indexPtr++ = index + meshWidth + 1;
651 *indexPtr++ = index + meshWidth + 2;
652 // upper-right triangle
653 *indexPtr++ = index;
654 *indexPtr++ = index + meshWidth + 2;
655 *indexPtr++ = index + 1;
656 // bump to the next cell
657 index += 1;
658 }
659 // bump to the next row
660 index += 1;
661 }
662 SkASSERT(indexPtr - indices == indexCount);
663 SkASSERT((char*)indexPtr - (char*)storage.get() == storageSize);
664 }
665
666 // double-check that we have legal indices
667#ifdef SK_DEBUG
668 {
669 for (int i = 0; i < indexCount; i++) {
670 SkASSERT((unsigned)indices[i] < (unsigned)ptCount);
671 }
672 }
673#endif
674
675 // cons-up a shader for the bitmap
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400676 SkPaint tmpPaint;
Derek Sollenberger8872b382014-06-23 14:13:53 -0400677 if (paint) {
678 tmpPaint = *paint;
679 }
680 SkShader* shader = SkShader::CreateBitmapShader(bitmap,
681 SkShader::kClamp_TileMode,
682 SkShader::kClamp_TileMode);
683 SkSafeUnref(tmpPaint.setShader(shader));
684
685 mCanvas->drawVertices(SkCanvas::kTriangles_VertexMode, ptCount, (SkPoint*)vertices,
686 texs, (const SkColor*)colors, NULL, indices,
687 indexCount, tmpPaint);
688}
689
Derek Sollenbergeredca3202015-07-10 13:56:39 -0400690void SkiaCanvas::drawNinePatch(const SkBitmap& bitmap, const Res_png_9patch& chunk,
691 float dstLeft, float dstTop, float dstRight, float dstBottom, const SkPaint* paint) {
692 SkRect bounds = SkRect::MakeLTRB(dstLeft, dstTop, dstRight, dstBottom);
693 NinePatch::Draw(mCanvas, bounds, bitmap, chunk, paint, nullptr);
694}
695
Derek Sollenberger8872b382014-06-23 14:13:53 -0400696// ----------------------------------------------------------------------------
697// Canvas draw operations: Text
698// ----------------------------------------------------------------------------
699
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400700void SkiaCanvas::drawText(const uint16_t* text, const float* positions, int count,
701 const SkPaint& paint, float x, float y,
Tom Hudson8dfaa492014-12-09 15:03:44 -0500702 float boundsLeft, float boundsTop, float boundsRight, float boundsBottom,
703 float totalAdvance) {
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400704 // Set align to left for drawing, as we don't want individual
705 // glyphs centered or right-aligned; the offset above takes
706 // care of all alignment.
707 SkPaint paintCopy(paint);
708 paintCopy.setTextAlign(SkPaint::kLeft_Align);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400709
Ben Wagnere3a40ea2015-08-19 15:49:37 -0400710 static_assert(sizeof(SkPoint) == sizeof(float)*2, "SkPoint is no longer two floats");
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400711 mCanvas->drawPosText(text, count << 1, reinterpret_cast<const SkPoint*>(positions), paintCopy);
Chris Craika1717272015-11-19 13:02:43 -0800712 drawTextDecorations(x, y, totalAdvance, paint);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400713}
714
715void SkiaCanvas::drawTextOnPath(const uint16_t* glyphs, int count, const SkPath& path,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400716 float hOffset, float vOffset, const SkPaint& paint) {
Tom Hudson34e79c12015-04-14 11:34:39 -0400717 mCanvas->drawTextOnPathHV(glyphs, count << 1, path, hOffset, vOffset, paint);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400718}
719
720} // namespace android