blob: a8f8134170d3d73d27dc0f66b389f1da87033e69 [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 drawPosText(const uint16_t* text, const float* positions, int count,
Derek Sollenbergerb3d50e02015-01-29 11:19:31 -0500135 int posCount, const SkPaint& paint) override;
Derek Sollenberger8872b382014-06-23 14:13:53 -0400136 virtual void drawTextOnPath(const uint16_t* glyphs, int count, const SkPath& path,
Derek Sollenbergerb3d50e02015-01-29 11:19:31 -0500137 float hOffset, float vOffset, const SkPaint& paint) override;
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400138
Derek Sollenbergerb3d50e02015-01-29 11:19:31 -0500139 virtual bool drawTextAbsolutePos() const override { return true; }
Derek Sollenberger8872b382014-06-23 14:13:53 -0400140
141private:
142 struct SaveRec {
143 int saveCount;
144 SkCanvas::SaveFlags saveFlags;
145 };
146
Derek Sollenberger6578a982015-07-13 13:24:29 -0400147 bool mHighContrastText = false;
148
Derek Sollenberger8872b382014-06-23 14:13:53 -0400149 void recordPartialSave(SkCanvas::SaveFlags flags);
150 void saveClipsForFrame(SkTArray<SkClipStack::Element>& clips, int frameSaveCount);
151 void applyClips(const SkTArray<SkClipStack::Element>& clips);
152
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400153 void drawPoints(const float* points, int count, const SkPaint& paint,
Derek Sollenberger8872b382014-06-23 14:13:53 -0400154 SkCanvas::PointMode mode);
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400155 void drawTextDecorations(float x, float y, float length, const SkPaint& paint);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400156
157 SkAutoTUnref<SkCanvas> mCanvas;
Ben Wagner60126ef2015-08-07 12:13:48 -0400158 std::unique_ptr<SkDeque> mSaveStack; // lazily allocated, tracks partial saves.
Derek Sollenberger8872b382014-06-23 14:13:53 -0400159};
160
John Reckc1b33d62015-04-22 09:04:45 -0700161Canvas* Canvas::create_canvas(const SkBitmap& bitmap) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400162 return new SkiaCanvas(bitmap);
163}
164
165Canvas* Canvas::create_canvas(SkCanvas* skiaCanvas) {
166 return new SkiaCanvas(skiaCanvas);
167}
168
John Reckc1b33d62015-04-22 09:04:45 -0700169SkiaCanvas::SkiaCanvas(const SkBitmap& bitmap) {
170 mCanvas.reset(new SkCanvas(bitmap));
Derek Sollenberger8872b382014-06-23 14:13:53 -0400171}
172
173// ----------------------------------------------------------------------------
174// Canvas state operations: Replace Bitmap
175// ----------------------------------------------------------------------------
176
177class ClipCopier : public SkCanvas::ClipVisitor {
178public:
179 ClipCopier(SkCanvas* dstCanvas) : m_dstCanvas(dstCanvas) {}
180
181 virtual void clipRect(const SkRect& rect, SkRegion::Op op, bool antialias) {
182 m_dstCanvas->clipRect(rect, op, antialias);
183 }
184 virtual void clipRRect(const SkRRect& rrect, SkRegion::Op op, bool antialias) {
185 m_dstCanvas->clipRRect(rrect, op, antialias);
186 }
187 virtual void clipPath(const SkPath& path, SkRegion::Op op, bool antialias) {
188 m_dstCanvas->clipPath(path, op, antialias);
189 }
190
191private:
192 SkCanvas* m_dstCanvas;
193};
194
John Reckc1b33d62015-04-22 09:04:45 -0700195void SkiaCanvas::setBitmap(const SkBitmap& bitmap) {
196 SkCanvas* newCanvas = new SkCanvas(bitmap);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400197
John Reckc1b33d62015-04-22 09:04:45 -0700198 if (!bitmap.isNull()) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400199 // Copy the canvas matrix & clip state.
200 newCanvas->setMatrix(mCanvas->getTotalMatrix());
Leon Scroggins IIIf35b9892015-07-31 10:38:40 -0400201
202 ClipCopier copier(newCanvas);
203 mCanvas->replayClips(&copier);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400204 }
205
206 // unrefs the existing canvas
207 mCanvas.reset(newCanvas);
208
209 // clean up the old save stack
210 mSaveStack.reset(NULL);
211}
212
213// ----------------------------------------------------------------------------
214// Canvas state operations
215// ----------------------------------------------------------------------------
216
217bool SkiaCanvas::isOpaque() {
Leon Scroggins IIIf35b9892015-07-31 10:38:40 -0400218 return mCanvas->imageInfo().isOpaque();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400219}
220
221int SkiaCanvas::width() {
Leon Scroggins IIIf35b9892015-07-31 10:38:40 -0400222 return mCanvas->imageInfo().width();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400223}
224
225int SkiaCanvas::height() {
Leon Scroggins IIIf35b9892015-07-31 10:38:40 -0400226 return mCanvas->imageInfo().height();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400227}
228
229// ----------------------------------------------------------------------------
230// Canvas state operations: Save (layer)
231// ----------------------------------------------------------------------------
232
233int SkiaCanvas::getSaveCount() const {
234 return mCanvas->getSaveCount();
235}
236
237int SkiaCanvas::save(SkCanvas::SaveFlags flags) {
238 int count = mCanvas->save();
239 recordPartialSave(flags);
240 return count;
241}
242
243void SkiaCanvas::restore() {
244 const SaveRec* rec = (NULL == mSaveStack.get())
245 ? NULL
246 : static_cast<SaveRec*>(mSaveStack->back());
247 int currentSaveCount = mCanvas->getSaveCount() - 1;
248 SkASSERT(NULL == rec || currentSaveCount >= rec->saveCount);
249
250 if (NULL == rec || rec->saveCount != currentSaveCount) {
251 // Fast path - no record for this frame.
252 mCanvas->restore();
253 return;
254 }
255
256 bool preserveMatrix = !(rec->saveFlags & SkCanvas::kMatrix_SaveFlag);
257 bool preserveClip = !(rec->saveFlags & SkCanvas::kClip_SaveFlag);
258
259 SkMatrix savedMatrix;
260 if (preserveMatrix) {
261 savedMatrix = mCanvas->getTotalMatrix();
262 }
263
264 SkTArray<SkClipStack::Element> savedClips;
265 if (preserveClip) {
266 saveClipsForFrame(savedClips, currentSaveCount);
267 }
268
269 mCanvas->restore();
270
271 if (preserveMatrix) {
272 mCanvas->setMatrix(savedMatrix);
273 }
274
275 if (preserveClip && !savedClips.empty()) {
276 applyClips(savedClips);
277 }
278
279 mSaveStack->pop_back();
280}
281
282void SkiaCanvas::restoreToCount(int restoreCount) {
283 while (mCanvas->getSaveCount() > restoreCount) {
284 this->restore();
285 }
286}
287
288int SkiaCanvas::saveLayer(float left, float top, float right, float bottom,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400289 const SkPaint* paint, SkCanvas::SaveFlags flags) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400290 SkRect bounds = SkRect::MakeLTRB(left, top, right, bottom);
291 int count = mCanvas->saveLayer(&bounds, paint, flags | SkCanvas::kMatrixClip_SaveFlag);
292 recordPartialSave(flags);
293 return count;
294}
295
296int SkiaCanvas::saveLayerAlpha(float left, float top, float right, float bottom,
297 int alpha, SkCanvas::SaveFlags flags) {
298 SkRect bounds = SkRect::MakeLTRB(left, top, right, bottom);
299 int count = mCanvas->saveLayerAlpha(&bounds, alpha, flags | SkCanvas::kMatrixClip_SaveFlag);
300 recordPartialSave(flags);
301 return count;
302}
303
304// ----------------------------------------------------------------------------
305// functions to emulate legacy SaveFlags (i.e. independent matrix/clip flags)
306// ----------------------------------------------------------------------------
307
308void SkiaCanvas::recordPartialSave(SkCanvas::SaveFlags flags) {
309 // A partial save is a save operation which doesn't capture the full canvas state.
310 // (either kMatrix_SaveFlags or kClip_SaveFlag is missing).
311
312 // Mask-out non canvas state bits.
313 flags = static_cast<SkCanvas::SaveFlags>(flags & SkCanvas::kMatrixClip_SaveFlag);
314
315 if (SkCanvas::kMatrixClip_SaveFlag == flags) {
316 // not a partial save.
317 return;
318 }
319
320 if (NULL == mSaveStack.get()) {
Ben Wagnerd1cbc162015-08-19 12:45:09 -0400321 mSaveStack.reset(new SkDeque(sizeof(struct SaveRec), 8));
Derek Sollenberger8872b382014-06-23 14:13:53 -0400322 }
323
324 SaveRec* rec = static_cast<SaveRec*>(mSaveStack->push_back());
325 // Store the save counter in the SkClipStack domain.
326 // (0-based, equal to the number of save ops on the stack).
327 rec->saveCount = mCanvas->getSaveCount() - 1;
328 rec->saveFlags = flags;
329}
330
331void SkiaCanvas::saveClipsForFrame(SkTArray<SkClipStack::Element>& clips, int frameSaveCount) {
332 SkClipStack::Iter clipIterator(*mCanvas->getClipStack(),
333 SkClipStack::Iter::kTop_IterStart);
334 while (const SkClipStack::Element* elem = clipIterator.next()) {
335 if (elem->getSaveCount() < frameSaveCount) {
336 // done with the current frame.
337 break;
338 }
339 SkASSERT(elem->getSaveCount() == frameSaveCount);
340 clips.push_back(*elem);
341 }
342}
343
344void SkiaCanvas::applyClips(const SkTArray<SkClipStack::Element>& clips) {
345 ClipCopier clipCopier(mCanvas);
346
347 // The clip stack stores clips in device space.
348 SkMatrix origMatrix = mCanvas->getTotalMatrix();
349 mCanvas->resetMatrix();
350
351 // We pushed the clips in reverse order.
352 for (int i = clips.count() - 1; i >= 0; --i) {
353 clips[i].replay(&clipCopier);
354 }
355
356 mCanvas->setMatrix(origMatrix);
357}
358
359// ----------------------------------------------------------------------------
360// Canvas state operations: Matrix
361// ----------------------------------------------------------------------------
362
363void SkiaCanvas::getMatrix(SkMatrix* outMatrix) const {
364 *outMatrix = mCanvas->getTotalMatrix();
365}
366
367void SkiaCanvas::setMatrix(const SkMatrix& matrix) {
368 mCanvas->setMatrix(matrix);
369}
370
371void SkiaCanvas::concat(const SkMatrix& matrix) {
372 mCanvas->concat(matrix);
373}
374
375void SkiaCanvas::rotate(float degrees) {
376 mCanvas->rotate(degrees);
377}
378
379void SkiaCanvas::scale(float sx, float sy) {
380 mCanvas->scale(sx, sy);
381}
382
383void SkiaCanvas::skew(float sx, float sy) {
384 mCanvas->skew(sx, sy);
385}
386
387void SkiaCanvas::translate(float dx, float dy) {
388 mCanvas->translate(dx, dy);
389}
390
391// ----------------------------------------------------------------------------
392// Canvas state operations: Clips
393// ----------------------------------------------------------------------------
394
395// This function is a mirror of SkCanvas::getClipBounds except that it does
396// not outset the edge of the clip to account for anti-aliasing. There is
397// a skia bug to investigate pushing this logic into back into skia.
398// (see https://code.google.com/p/skia/issues/detail?id=1303)
399bool SkiaCanvas::getClipBounds(SkRect* outRect) const {
400 SkIRect ibounds;
401 if (!mCanvas->getClipDeviceBounds(&ibounds)) {
402 return false;
403 }
404
405 SkMatrix inverse;
406 // if we can't invert the CTM, we can't return local clip bounds
407 if (!mCanvas->getTotalMatrix().invert(&inverse)) {
408 if (outRect) {
409 outRect->setEmpty();
410 }
411 return false;
412 }
413
414 if (NULL != outRect) {
415 SkRect r = SkRect::Make(ibounds);
416 inverse.mapRect(outRect, r);
417 }
418 return true;
419}
420
421bool SkiaCanvas::quickRejectRect(float left, float top, float right, float bottom) const {
422 SkRect bounds = SkRect::MakeLTRB(left, top, right, bottom);
423 return mCanvas->quickReject(bounds);
424}
425
426bool SkiaCanvas::quickRejectPath(const SkPath& path) const {
427 return mCanvas->quickReject(path);
428}
429
430bool SkiaCanvas::clipRect(float left, float top, float right, float bottom, SkRegion::Op op) {
431 SkRect rect = SkRect::MakeLTRB(left, top, right, bottom);
432 mCanvas->clipRect(rect, op);
Chris Craik5ec6a282015-06-23 15:42:12 -0700433 return !mCanvas->isClipEmpty();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400434}
435
436bool SkiaCanvas::clipPath(const SkPath* path, SkRegion::Op op) {
437 mCanvas->clipPath(*path, op);
Chris Craik5ec6a282015-06-23 15:42:12 -0700438 return !mCanvas->isClipEmpty();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400439}
440
441bool SkiaCanvas::clipRegion(const SkRegion* region, SkRegion::Op op) {
442 SkPath rgnPath;
443 if (region->getBoundaryPath(&rgnPath)) {
444 // The region is specified in device space.
445 SkMatrix savedMatrix = mCanvas->getTotalMatrix();
446 mCanvas->resetMatrix();
447 mCanvas->clipPath(rgnPath, op);
448 mCanvas->setMatrix(savedMatrix);
449 } else {
450 mCanvas->clipRect(SkRect::MakeEmpty(), op);
451 }
Chris Craik5ec6a282015-06-23 15:42:12 -0700452 return !mCanvas->isClipEmpty();
Derek Sollenberger8872b382014-06-23 14:13:53 -0400453}
454
455// ----------------------------------------------------------------------------
456// Canvas state operations: Filters
457// ----------------------------------------------------------------------------
458
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400459SkDrawFilter* SkiaCanvas::getDrawFilter() {
460 return mCanvas->getDrawFilter();
461}
462
Derek Sollenberger8872b382014-06-23 14:13:53 -0400463void SkiaCanvas::setDrawFilter(SkDrawFilter* drawFilter) {
464 mCanvas->setDrawFilter(drawFilter);
465}
466
467// ----------------------------------------------------------------------------
468// Canvas draw operations
469// ----------------------------------------------------------------------------
470
471void SkiaCanvas::drawColor(int color, SkXfermode::Mode mode) {
472 mCanvas->drawColor(color, mode);
473}
474
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400475void SkiaCanvas::drawPaint(const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400476 mCanvas->drawPaint(paint);
477}
478
479// ----------------------------------------------------------------------------
480// Canvas draw operations: Geometry
481// ----------------------------------------------------------------------------
482
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400483void SkiaCanvas::drawPoints(const float* points, int count, const SkPaint& paint,
Derek Sollenberger8872b382014-06-23 14:13:53 -0400484 SkCanvas::PointMode mode) {
485 // convert the floats into SkPoints
486 count >>= 1; // now it is the number of points
Ben Wagner6bbf68d2015-08-19 11:26:06 -0400487 std::unique_ptr<SkPoint[]> pts(new SkPoint[count]);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400488 for (int i = 0; i < count; i++) {
489 pts[i].set(points[0], points[1]);
490 points += 2;
491 }
Ben Wagner6bbf68d2015-08-19 11:26:06 -0400492 mCanvas->drawPoints(mode, count, pts.get(), paint);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400493}
494
495
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400496void SkiaCanvas::drawPoint(float x, float y, const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400497 mCanvas->drawPoint(x, y, paint);
498}
499
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400500void SkiaCanvas::drawPoints(const float* points, int count, const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400501 this->drawPoints(points, count, paint, SkCanvas::kPoints_PointMode);
502}
503
504void SkiaCanvas::drawLine(float startX, float startY, float stopX, float stopY,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400505 const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400506 mCanvas->drawLine(startX, startY, stopX, stopY, paint);
507}
508
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400509void SkiaCanvas::drawLines(const float* points, int count, const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400510 this->drawPoints(points, count, paint, SkCanvas::kLines_PointMode);
511}
512
513void SkiaCanvas::drawRect(float left, float top, float right, float bottom,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400514 const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400515 mCanvas->drawRectCoords(left, top, right, bottom, paint);
516
517}
518
Derek Sollenberger94394b32015-07-10 09:58:41 -0400519void SkiaCanvas::drawRegion(const SkRegion& region, const SkPaint& paint) {
520 SkRegion::Iterator it(region);
521 while (!it.done()) {
522 mCanvas->drawRect(SkRect::Make(it.rect()), paint);
523 it.next();
524 }
525}
526
Derek Sollenberger8872b382014-06-23 14:13:53 -0400527void SkiaCanvas::drawRoundRect(float left, float top, float right, float bottom,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400528 float rx, float ry, const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400529 SkRect rect = SkRect::MakeLTRB(left, top, right, bottom);
530 mCanvas->drawRoundRect(rect, rx, ry, paint);
531}
532
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400533void SkiaCanvas::drawCircle(float x, float y, float radius, const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400534 mCanvas->drawCircle(x, y, radius, paint);
535}
536
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400537void SkiaCanvas::drawOval(float left, float top, float right, float bottom, const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400538 SkRect oval = SkRect::MakeLTRB(left, top, right, bottom);
539 mCanvas->drawOval(oval, paint);
540}
541
542void SkiaCanvas::drawArc(float left, float top, float right, float bottom,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400543 float startAngle, float sweepAngle, bool useCenter, const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400544 SkRect arc = SkRect::MakeLTRB(left, top, right, bottom);
545 mCanvas->drawArc(arc, startAngle, sweepAngle, useCenter, paint);
546}
547
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400548void SkiaCanvas::drawPath(const SkPath& path, const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400549 mCanvas->drawPath(path, paint);
550}
551
552void SkiaCanvas::drawVertices(SkCanvas::VertexMode vertexMode, int vertexCount,
553 const float* verts, const float* texs, const int* colors,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400554 const uint16_t* indices, int indexCount, const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400555#ifndef SK_SCALAR_IS_FLOAT
556 SkDEBUGFAIL("SkScalar must be a float for these conversions to be valid");
557#endif
558 const int ptCount = vertexCount >> 1;
559 mCanvas->drawVertices(vertexMode, ptCount, (SkPoint*)verts, (SkPoint*)texs,
560 (SkColor*)colors, NULL, indices, indexCount, paint);
561}
562
563// ----------------------------------------------------------------------------
564// Canvas draw operations: Bitmaps
565// ----------------------------------------------------------------------------
566
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400567void SkiaCanvas::drawBitmap(const SkBitmap& bitmap, float left, float top, const SkPaint* paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400568 mCanvas->drawBitmap(bitmap, left, top, paint);
569}
570
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400571void SkiaCanvas::drawBitmap(const SkBitmap& bitmap, const SkMatrix& matrix, const SkPaint* paint) {
Mike Reed70ffbf92014-12-08 17:03:30 -0500572 SkAutoCanvasRestore acr(mCanvas, true);
573 mCanvas->concat(matrix);
574 mCanvas->drawBitmap(bitmap, 0, 0, paint);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400575}
576
577void SkiaCanvas::drawBitmap(const SkBitmap& bitmap, float srcLeft, float srcTop,
578 float srcRight, float srcBottom, float dstLeft, float dstTop,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400579 float dstRight, float dstBottom, const SkPaint* paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400580 SkRect srcRect = SkRect::MakeLTRB(srcLeft, srcTop, srcRight, srcBottom);
581 SkRect dstRect = SkRect::MakeLTRB(dstLeft, dstTop, dstRight, dstBottom);
Leon Scroggins IIIf35b9892015-07-31 10:38:40 -0400582 mCanvas->drawBitmapRect(bitmap, srcRect, dstRect, paint);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400583}
584
585void SkiaCanvas::drawBitmapMesh(const SkBitmap& bitmap, int meshWidth, int meshHeight,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400586 const float* vertices, const int* colors, const SkPaint* paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400587
588 const int ptCount = (meshWidth + 1) * (meshHeight + 1);
589 const int indexCount = meshWidth * meshHeight * 6;
590
591 /* Our temp storage holds 2 or 3 arrays.
592 texture points [ptCount * sizeof(SkPoint)]
593 optionally vertex points [ptCount * sizeof(SkPoint)] if we need a
594 copy to convert from float to fixed
595 indices [ptCount * sizeof(uint16_t)]
596 */
597 ssize_t storageSize = ptCount * sizeof(SkPoint); // texs[]
598 storageSize += indexCount * sizeof(uint16_t); // indices[]
599
600
601#ifndef SK_SCALAR_IS_FLOAT
602 SkDEBUGFAIL("SkScalar must be a float for these conversions to be valid");
603#endif
Ben Wagner6bbf68d2015-08-19 11:26:06 -0400604 std::unique_ptr<char[]> storage(new char[storageSize]);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400605 SkPoint* texs = (SkPoint*)storage.get();
606 uint16_t* indices = (uint16_t*)(texs + ptCount);
607
608 // cons up texture coordinates and indices
609 {
610 const SkScalar w = SkIntToScalar(bitmap.width());
611 const SkScalar h = SkIntToScalar(bitmap.height());
612 const SkScalar dx = w / meshWidth;
613 const SkScalar dy = h / meshHeight;
614
615 SkPoint* texsPtr = texs;
616 SkScalar y = 0;
617 for (int i = 0; i <= meshHeight; i++) {
618 if (i == meshHeight) {
619 y = h; // to ensure numerically we hit h exactly
620 }
621 SkScalar x = 0;
622 for (int j = 0; j < meshWidth; j++) {
623 texsPtr->set(x, y);
624 texsPtr += 1;
625 x += dx;
626 }
627 texsPtr->set(w, y);
628 texsPtr += 1;
629 y += dy;
630 }
631 SkASSERT(texsPtr - texs == ptCount);
632 }
633
634 // cons up indices
635 {
636 uint16_t* indexPtr = indices;
637 int index = 0;
638 for (int i = 0; i < meshHeight; i++) {
639 for (int j = 0; j < meshWidth; j++) {
640 // lower-left triangle
641 *indexPtr++ = index;
642 *indexPtr++ = index + meshWidth + 1;
643 *indexPtr++ = index + meshWidth + 2;
644 // upper-right triangle
645 *indexPtr++ = index;
646 *indexPtr++ = index + meshWidth + 2;
647 *indexPtr++ = index + 1;
648 // bump to the next cell
649 index += 1;
650 }
651 // bump to the next row
652 index += 1;
653 }
654 SkASSERT(indexPtr - indices == indexCount);
655 SkASSERT((char*)indexPtr - (char*)storage.get() == storageSize);
656 }
657
658 // double-check that we have legal indices
659#ifdef SK_DEBUG
660 {
661 for (int i = 0; i < indexCount; i++) {
662 SkASSERT((unsigned)indices[i] < (unsigned)ptCount);
663 }
664 }
665#endif
666
667 // cons-up a shader for the bitmap
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400668 SkPaint tmpPaint;
Derek Sollenberger8872b382014-06-23 14:13:53 -0400669 if (paint) {
670 tmpPaint = *paint;
671 }
672 SkShader* shader = SkShader::CreateBitmapShader(bitmap,
673 SkShader::kClamp_TileMode,
674 SkShader::kClamp_TileMode);
675 SkSafeUnref(tmpPaint.setShader(shader));
676
677 mCanvas->drawVertices(SkCanvas::kTriangles_VertexMode, ptCount, (SkPoint*)vertices,
678 texs, (const SkColor*)colors, NULL, indices,
679 indexCount, tmpPaint);
680}
681
Derek Sollenbergeredca3202015-07-10 13:56:39 -0400682void SkiaCanvas::drawNinePatch(const SkBitmap& bitmap, const Res_png_9patch& chunk,
683 float dstLeft, float dstTop, float dstRight, float dstBottom, const SkPaint* paint) {
684 SkRect bounds = SkRect::MakeLTRB(dstLeft, dstTop, dstRight, dstBottom);
685 NinePatch::Draw(mCanvas, bounds, bitmap, chunk, paint, nullptr);
686}
687
Derek Sollenberger8872b382014-06-23 14:13:53 -0400688// ----------------------------------------------------------------------------
689// Canvas draw operations: Text
690// ----------------------------------------------------------------------------
691
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400692void SkiaCanvas::drawText(const uint16_t* text, const float* positions, int count,
693 const SkPaint& paint, float x, float y,
Tom Hudson8dfaa492014-12-09 15:03:44 -0500694 float boundsLeft, float boundsTop, float boundsRight, float boundsBottom,
695 float totalAdvance) {
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400696 // Set align to left for drawing, as we don't want individual
697 // glyphs centered or right-aligned; the offset above takes
698 // care of all alignment.
699 SkPaint paintCopy(paint);
700 paintCopy.setTextAlign(SkPaint::kLeft_Align);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400701
Ben Wagnere3a40ea2015-08-19 15:49:37 -0400702 static_assert(sizeof(SkPoint) == sizeof(float)*2, "SkPoint is no longer two floats");
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400703 mCanvas->drawPosText(text, count << 1, reinterpret_cast<const SkPoint*>(positions), paintCopy);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400704}
705
706void SkiaCanvas::drawPosText(const uint16_t* text, const float* positions, int count, int posCount,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400707 const SkPaint& paint) {
Derek Sollenberger8872b382014-06-23 14:13:53 -0400708 SkPoint* posPtr = posCount > 0 ? new SkPoint[posCount] : NULL;
709 int indx;
710 for (indx = 0; indx < posCount; indx++) {
711 posPtr[indx].fX = positions[indx << 1];
712 posPtr[indx].fY = positions[(indx << 1) + 1];
713 }
714
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400715 SkPaint paintCopy(paint);
716 paintCopy.setTextEncoding(SkPaint::kUTF16_TextEncoding);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400717 mCanvas->drawPosText(text, count, posPtr, paintCopy);
718
719 delete[] posPtr;
720}
721
722void SkiaCanvas::drawTextOnPath(const uint16_t* glyphs, int count, const SkPath& path,
Derek Sollenbergeracb40992014-07-21 15:22:10 -0400723 float hOffset, float vOffset, const SkPaint& paint) {
Tom Hudson34e79c12015-04-14 11:34:39 -0400724 mCanvas->drawTextOnPathHV(glyphs, count << 1, path, hOffset, vOffset, paint);
Derek Sollenberger8872b382014-06-23 14:13:53 -0400725}
726
727} // namespace android