blob: 935d489892bb1bb25719645321d0ab67258315b3 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001/*
2 * Copyright 2011 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
robertphillips@google.com53238bc2013-08-30 13:12:10 +00007
reed@android.com8a1c16f2008-12-17 15:59:43 +00008#include "SkDevice.h"
reede010f1c2014-09-17 10:49:38 -07009#include "SkDeviceProperties.h"
dandovecfff212014-08-04 10:02:00 -070010#include "SkDraw.h"
reed@google.coma7d94852011-03-30 21:23:07 +000011#include "SkMetaData.h"
dandovecfff212014-08-04 10:02:00 -070012#include "SkPatchUtils.h"
fmalita84833262014-09-19 11:40:51 -070013#include "SkShader.h"
fmalitaaa1b9122014-08-28 14:32:24 -070014#include "SkTextBlob.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000015
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000016SkBaseDevice::SkBaseDevice()
reed4a8126e2014-09-22 07:29:03 -070017 : fLeakyProperties(SkNEW_ARGS(SkDeviceProperties, (SkDeviceProperties::kLegacyLCD_InitType)))
bungeman@google.com532470f2013-01-22 19:25:14 +000018#ifdef SK_DEBUG
19 , fAttachedToCanvas(false)
robertphillips@google.com40a1ae42012-07-13 15:36:15 +000020#endif
21{
reed@google.comaf951c92011-06-16 19:10:39 +000022 fOrigin.setZero();
23 fMetaData = NULL;
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000024}
25
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000026SkBaseDevice::~SkBaseDevice() {
reede010f1c2014-09-17 10:49:38 -070027 SkDELETE(fLeakyProperties);
28 SkDELETE(fMetaData);
reed@google.coma7d94852011-03-30 21:23:07 +000029}
30
commit-bot@chromium.org15a14052014-02-16 00:59:25 +000031SkBaseDevice* SkBaseDevice::createCompatibleDevice(const SkImageInfo& info) {
commit-bot@chromium.org15a14052014-02-16 00:59:25 +000032 return this->onCreateDevice(info, kGeneral_Usage);
33}
34
35SkBaseDevice* SkBaseDevice::createCompatibleDeviceForSaveLayer(const SkImageInfo& info) {
commit-bot@chromium.org15a14052014-02-16 00:59:25 +000036 return this->onCreateDevice(info, kSaveLayer_Usage);
37}
38
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000039SkMetaData& SkBaseDevice::getMetaData() {
reed@google.coma7d94852011-03-30 21:23:07 +000040 // metadata users are rare, so we lazily allocate it. If that changes we
41 // can decide to just make it a field in the device (rather than a ptr)
42 if (NULL == fMetaData) {
43 fMetaData = new SkMetaData;
44 }
45 return *fMetaData;
46}
47
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +000048SkImageInfo SkBaseDevice::imageInfo() const {
reedf252f642014-06-14 04:24:56 -070049 return SkImageInfo::MakeUnknown();
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +000050}
51
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000052const SkBitmap& SkBaseDevice::accessBitmap(bool changePixels) {
53 const SkBitmap& bitmap = this->onAccessBitmap();
reed@android.com8a1c16f2008-12-17 15:59:43 +000054 if (changePixels) {
junov@chromium.org1f9767c2012-02-07 16:27:57 +000055 bitmap.notifyPixelsChanged();
reed@android.com8a1c16f2008-12-17 15:59:43 +000056 }
junov@chromium.org1f9767c2012-02-07 16:27:57 +000057 return bitmap;
reed@android.com8a1c16f2008-12-17 15:59:43 +000058}
59
reed4a8126e2014-09-22 07:29:03 -070060void SkBaseDevice::setPixelGeometry(SkPixelGeometry geo) {
61 fLeakyProperties->fPixelGeometry = geo;
62}
63
64SkSurface* SkBaseDevice::newSurface(const SkImageInfo&, const SkSurfaceProps&) { return NULL; }
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +000065
66const void* SkBaseDevice::peekPixels(SkImageInfo*, size_t*) { return NULL; }
commit-bot@chromium.orged9806f2014-02-21 02:32:36 +000067
68void SkBaseDevice::drawDRRect(const SkDraw& draw, const SkRRect& outer,
69 const SkRRect& inner, const SkPaint& paint) {
70 SkPath path;
71 path.addRRect(outer);
72 path.addRRect(inner);
73 path.setFillType(SkPath::kEvenOdd_FillType);
74
75 const SkMatrix* preMatrix = NULL;
76 const bool pathIsMutable = true;
77 this->drawPath(draw, path, paint, preMatrix, pathIsMutable);
78}
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +000079
dandovb3c9d1c2014-08-12 08:34:29 -070080void SkBaseDevice::drawPatch(const SkDraw& draw, const SkPoint cubics[12], const SkColor colors[4],
81 const SkPoint texCoords[4], SkXfermode* xmode, const SkPaint& paint) {
82 SkPatchUtils::VertexData data;
dandovecfff212014-08-04 10:02:00 -070083
dandovb3c9d1c2014-08-12 08:34:29 -070084 SkISize lod = SkPatchUtils::GetLevelOfDetail(cubics, draw.fMatrix);
dandovecfff212014-08-04 10:02:00 -070085
86 // It automatically adjusts lodX and lodY in case it exceeds the number of indices.
dandov45f78422014-08-15 06:06:47 -070087 // If it fails to generate the vertices, then we do not draw.
88 if (SkPatchUtils::getVertexData(&data, cubics, colors, texCoords, lod.width(), lod.height())) {
89 this->drawVertices(draw, SkCanvas::kTriangles_VertexMode, data.fVertexCount, data.fPoints,
90 data.fTexCoords, data.fColors, xmode, data.fIndices, data.fIndexCount,
91 paint);
92 }
dandovecfff212014-08-04 10:02:00 -070093}
94
fmalitaaa1b9122014-08-28 14:32:24 -070095void SkBaseDevice::drawTextBlob(const SkDraw& draw, const SkTextBlob* blob, SkScalar x, SkScalar y,
96 const SkPaint &paint) {
97
fmalita84833262014-09-19 11:40:51 -070098 SkPaint runPaint = paint;
fmalitaaa1b9122014-08-28 14:32:24 -070099
fmalitaaa1b9122014-08-28 14:32:24 -0700100 SkTextBlob::RunIterator it(blob);
101 while (!it.done()) {
102 size_t textLen = it.glyphCount() * sizeof(uint16_t);
103 const SkPoint& offset = it.offset();
104 // applyFontToPaint() always overwrites the exact same attributes,
105 // so it is safe to not re-seed the paint.
106 it.applyFontToPaint(&runPaint);
107
108 switch (it.positioning()) {
109 case SkTextBlob::kDefault_Positioning:
fmalita05c4a432014-09-29 06:29:53 -0700110 this->drawText(draw, it.glyphs(), textLen, x + offset.x(), y + offset.y(), runPaint);
fmalitaaa1b9122014-08-28 14:32:24 -0700111 break;
112 case SkTextBlob::kHorizontal_Positioning:
fmalita05c4a432014-09-29 06:29:53 -0700113 this->drawPosText(draw, it.glyphs(), textLen, it.pos(), 1,
114 SkPoint::Make(x, y + offset.y()), runPaint);
115 break;
fmalitaaa1b9122014-08-28 14:32:24 -0700116 case SkTextBlob::kFull_Positioning:
fmalita05c4a432014-09-29 06:29:53 -0700117 this->drawPosText(draw, it.glyphs(), textLen, it.pos(), 2,
118 SkPoint::Make(x, y), runPaint);
fmalitaaa1b9122014-08-28 14:32:24 -0700119 break;
120 default:
121 SkFAIL("unhandled positioning mode");
122 }
123
124 it.next();
125 }
126}
127
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000128bool SkBaseDevice::readPixels(const SkImageInfo& info, void* dstP, size_t rowBytes, int x, int y) {
129#ifdef SK_DEBUG
130 SkASSERT(info.width() > 0 && info.height() > 0);
131 SkASSERT(dstP);
132 SkASSERT(rowBytes >= info.minRowBytes());
133 SkASSERT(x >= 0 && y >= 0);
skia.committer@gmail.comdb0c8752014-03-18 03:02:11 +0000134
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000135 const SkImageInfo& srcInfo = this->imageInfo();
136 SkASSERT(x + info.width() <= srcInfo.width());
137 SkASSERT(y + info.height() <= srcInfo.height());
138#endif
139 return this->onReadPixels(info, dstP, rowBytes, x, y);
140}
141
commit-bot@chromium.org4ef54f82014-03-17 17:03:18 +0000142bool SkBaseDevice::writePixels(const SkImageInfo& info, const void* pixels, size_t rowBytes,
143 int x, int y) {
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000144#ifdef SK_DEBUG
145 SkASSERT(info.width() > 0 && info.height() > 0);
146 SkASSERT(pixels);
147 SkASSERT(rowBytes >= info.minRowBytes());
148 SkASSERT(x >= 0 && y >= 0);
149
150 const SkImageInfo& dstInfo = this->imageInfo();
151 SkASSERT(x + info.width() <= dstInfo.width());
152 SkASSERT(y + info.height() <= dstInfo.height());
153#endif
154 return this->onWritePixels(info, pixels, rowBytes, x, y);
155}
156
157bool SkBaseDevice::onWritePixels(const SkImageInfo&, const void*, size_t, int, int) {
158 return false;
159}
160
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000161bool SkBaseDevice::onReadPixels(const SkImageInfo&, void*, size_t, int x, int y) {
commit-bot@chromium.org2cccf832014-03-12 03:04:08 +0000162 return false;
163}
164
reed@google.com9c135db2014-03-12 18:28:35 +0000165void* SkBaseDevice::accessPixels(SkImageInfo* info, size_t* rowBytes) {
166 SkImageInfo tmpInfo;
167 size_t tmpRowBytes;
168 if (NULL == info) {
169 info = &tmpInfo;
170 }
171 if (NULL == rowBytes) {
172 rowBytes = &tmpRowBytes;
173 }
174 return this->onAccessPixels(info, rowBytes);
175}
176
177void* SkBaseDevice::onAccessPixels(SkImageInfo* info, size_t* rowBytes) {
178 return NULL;
179}
180
robertphillips9b14f262014-06-04 05:40:44 -0700181void SkBaseDevice::EXPERIMENTAL_optimize(const SkPicture* picture) {
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000182 // The base class doesn't perform any analysis but derived classes may
183}
184
reedd5fa1a42014-08-09 11:08:05 -0700185bool SkBaseDevice::EXPERIMENTAL_drawPicture(SkCanvas*, const SkPicture*, const SkMatrix*,
186 const SkPaint*) {
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000187 // The base class doesn't perform any accelerated picture rendering
188 return false;
189}