blob: 63c7bc4d3c8356344cea5f08e9195d0da5005d6d [file] [log] [blame]
reed@google.comc9062042012-07-30 18:06:00 +00001/*
2 * Copyright 2012 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 */
7
Brian Salomonab32f652019-05-10 14:24:50 -04008#include <atomic>
Brian Salomon201700f2019-05-17 12:05:44 -04009#include <cmath>
Mike Kleinc0bd9f92019-04-23 12:05:21 -050010#include "include/core/SkCanvas.h"
11#include "include/core/SkFontLCDConfig.h"
12#include "include/gpu/GrBackendSurface.h"
Brian Salomonab32f652019-05-10 14:24:50 -040013#include "src/core/SkAutoPixmapStorage.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050014#include "src/core/SkImagePriv.h"
15#include "src/image/SkSurface_Base.h"
Robert Phillips8caf85f2018-04-05 09:30:38 -040016
reed4a8126e2014-09-22 07:29:03 -070017static SkPixelGeometry compute_default_geometry() {
18 SkFontLCDConfig::LCDOrder order = SkFontLCDConfig::GetSubpixelOrder();
19 if (SkFontLCDConfig::kNONE_LCDOrder == order) {
20 return kUnknown_SkPixelGeometry;
21 } else {
22 // Bit0 is RGB(0), BGR(1)
23 // Bit1 is H(0), V(1)
24 const SkPixelGeometry gGeo[] = {
25 kRGB_H_SkPixelGeometry,
26 kBGR_H_SkPixelGeometry,
27 kRGB_V_SkPixelGeometry,
28 kBGR_V_SkPixelGeometry,
29 };
30 int index = 0;
31 if (SkFontLCDConfig::kBGR_LCDOrder == order) {
32 index |= 1;
33 }
34 if (SkFontLCDConfig::kVertical_LCDOrientation == SkFontLCDConfig::GetSubpixelOrientation()){
35 index |= 2;
36 }
37 return gGeo[index];
38 }
39}
40
41SkSurfaceProps::SkSurfaceProps() : fFlags(0), fPixelGeometry(kUnknown_SkPixelGeometry) {}
42
43SkSurfaceProps::SkSurfaceProps(InitType) : fFlags(0), fPixelGeometry(compute_default_geometry()) {}
44
45SkSurfaceProps::SkSurfaceProps(uint32_t flags, InitType)
46 : fFlags(flags)
47 , fPixelGeometry(compute_default_geometry())
48{}
49
50SkSurfaceProps::SkSurfaceProps(uint32_t flags, SkPixelGeometry pg)
51 : fFlags(flags), fPixelGeometry(pg)
52{}
53
reed4af267b2014-11-21 08:46:37 -080054SkSurfaceProps::SkSurfaceProps(const SkSurfaceProps& other)
55 : fFlags(other.fFlags)
56 , fPixelGeometry(other.fPixelGeometry)
57{}
58
reed@google.com889b09e2012-07-27 21:10:42 +000059///////////////////////////////////////////////////////////////////////////////
60
reed4a8126e2014-09-22 07:29:03 -070061SkSurface_Base::SkSurface_Base(int width, int height, const SkSurfaceProps* props)
Robert Phillipsa54ccb22017-01-31 07:40:33 -050062 : INHERITED(width, height, props) {
reed@google.com9ea5a3b2012-07-30 21:03:46 +000063}
reed@google.com889b09e2012-07-27 21:10:42 +000064
reed4a8126e2014-09-22 07:29:03 -070065SkSurface_Base::SkSurface_Base(const SkImageInfo& info, const SkSurfaceProps* props)
Robert Phillipsa54ccb22017-01-31 07:40:33 -050066 : INHERITED(info, props) {
reed@google.com1360c522014-01-08 21:25:26 +000067}
68
reed@google.com9ea5a3b2012-07-30 21:03:46 +000069SkSurface_Base::~SkSurface_Base() {
reed@google.com97af1a62012-08-28 12:19:02 +000070 // in case the canvas outsurvives us, we null the callback
71 if (fCachedCanvas) {
halcanary96fcdcc2015-08-27 07:41:13 -070072 fCachedCanvas->setSurfaceBase(nullptr);
reed@google.com97af1a62012-08-28 12:19:02 +000073 }
reed@google.com9ea5a3b2012-07-30 21:03:46 +000074}
reed@google.com889b09e2012-07-27 21:10:42 +000075
Robert Phillips8caf85f2018-04-05 09:30:38 -040076GrBackendTexture SkSurface_Base::onGetBackendTexture(BackendHandleAccess) {
77 return GrBackendTexture(); // invalid
78}
79
80GrBackendRenderTarget SkSurface_Base::onGetBackendRenderTarget(BackendHandleAccess) {
81 return GrBackendRenderTarget(); // invalid
82}
83
reed4a8126e2014-09-22 07:29:03 -070084void SkSurface_Base::onDraw(SkCanvas* canvas, SkScalar x, SkScalar y, const SkPaint* paint) {
Robert Phillipsac6b1fa2017-03-20 08:38:50 -040085 auto image = this->makeImageSnapshot();
reed@google.com889b09e2012-07-27 21:10:42 +000086 if (image) {
piotaixrb5fae932014-09-24 13:03:30 -070087 canvas->drawImage(image, x, y, paint);
reed@google.com889b09e2012-07-27 21:10:42 +000088 }
89}
90
Brian Salomon031b0ba2019-05-23 11:05:26 -040091void SkSurface_Base::onAsyncRescaleAndReadPixels(const SkImageInfo& info, const SkIRect& srcRect,
92 SkSurface::RescaleGamma rescaleGamma,
93 SkFilterQuality rescaleQuality,
94 SkSurface::ReadPixelsCallback callback,
95 SkSurface::ReadPixelsContext context) {
96 int srcW = srcRect.width();
97 int srcH = srcRect.height();
98 float sx = (float)info.width() / srcW;
99 float sy = (float)info.height() / srcH;
100 // How many bilerp/bicubic steps to do in X and Y. + means upscaling, - means downscaling.
101 int stepsX;
102 int stepsY;
103 if (rescaleQuality > kNone_SkFilterQuality) {
104 stepsX = static_cast<int>((sx > 1.f) ? std::ceil(std::log2f(sx))
105 : std::floor(std::log2f(sx)));
106 stepsY = static_cast<int>((sy > 1.f) ? std::ceil(std::log2f(sy))
107 : std::floor(std::log2f(sy)));
108 } else {
109 stepsX = sx != 1.f;
110 stepsY = sy != 1.f;
111 }
112
113 SkPaint paint;
114 paint.setBlendMode(SkBlendMode::kSrc);
115 if (stepsX < 0 || stepsY < 0) {
116 // Don't trigger MIP generation. We don't currently have a way to trigger bicubic for
117 // downscaling draws.
118 rescaleQuality = std::min(rescaleQuality, kLow_SkFilterQuality);
119 }
120 paint.setFilterQuality(rescaleQuality);
121 sk_sp<SkSurface> src(SkRef(this));
122 int srcX = srcRect.fLeft;
123 int srcY = srcRect.fTop;
124 SkCanvas::SrcRectConstraint constraint = SkCanvas::kStrict_SrcRectConstraint;
125 // Assume we should ignore the rescale linear request if the surface has no color space since
126 // it's unclear how we'd linearize from an unknown color space.
127 if (rescaleGamma == SkSurface::RescaleGamma::kLinear &&
128 this->getCanvas()->imageInfo().colorSpace() &&
129 !this->getCanvas()->imageInfo().colorSpace()->gammaIsLinear()) {
130 auto cs = this->getCanvas()->imageInfo().colorSpace()->makeLinearGamma();
131 // Promote to F16 color type to preserve precision.
132 auto ii = SkImageInfo::Make(srcW, srcH, kRGBA_F16_SkColorType,
133 this->getCanvas()->imageInfo().alphaType(), std::move(cs));
134 auto linearSurf = this->makeSurface(ii);
135 if (!linearSurf) {
136 // Maybe F16 isn't supported? Try again with original color type.
137 ii = ii.makeColorType(this->getCanvas()->imageInfo().colorType());
138 linearSurf = this->makeSurface(ii);
139 if (!linearSurf) {
140 callback(context, nullptr, 0);
141 return;
142 }
143 }
144 this->draw(linearSurf->getCanvas(), -srcX, -srcY, &paint);
145 src = std::move(linearSurf);
146 srcX = 0;
147 srcY = 0;
148 constraint = SkCanvas::kFast_SrcRectConstraint;
149 }
150 while (stepsX || stepsY) {
151 int nextW = info.width();
152 int nextH = info.height();
153 if (stepsX < 0) {
154 nextW = info.width() << (-stepsX - 1);
155 stepsX++;
156 } else if (stepsX != 0) {
157 if (stepsX > 1) {
158 nextW = srcW * 2;
159 }
160 --stepsX;
161 }
162 if (stepsY < 0) {
163 nextH = info.height() << (-stepsY - 1);
164 stepsY++;
165 } else if (stepsY != 0) {
166 if (stepsY > 1) {
167 nextH = srcH * 2;
168 }
169 --stepsY;
170 }
171 auto ii = src->getCanvas()->imageInfo().makeWH(nextW, nextH);
172 if (!stepsX && !stepsY) {
173 // Might as well fold conversion to final info in the last step.
174 ii = info;
175 }
176 auto next = this->makeSurface(ii);
177 if (!next) {
178 callback(context, nullptr, 0);
179 return;
180 }
181 next->getCanvas()->drawImageRect(
182 src->makeImageSnapshot(), SkIRect::MakeXYWH(srcX, srcY, srcW, srcH),
183 SkRect::MakeWH((float)nextW, (float)nextH), &paint, constraint);
184 src = std::move(next);
185 srcX = srcY = 0;
186 srcW = nextW;
187 srcH = nextH;
188 constraint = SkCanvas::kFast_SrcRectConstraint;
189 }
190
Brian Salomonab32f652019-05-10 14:24:50 -0400191 SkAutoPixmapStorage pm;
192 pm.alloc(info);
Brian Salomon031b0ba2019-05-23 11:05:26 -0400193 if (src->readPixels(pm, srcX, srcY)) {
Brian Salomonab32f652019-05-10 14:24:50 -0400194 callback(context, pm.addr(), pm.rowBytes());
195 } else {
196 callback(context, nullptr, 0);
197 }
198}
199
reedc83a2972015-07-16 07:40:45 -0700200bool SkSurface_Base::outstandingImageSnapshot() const {
201 return fCachedImage && !fCachedImage->unique();
202}
203
commit-bot@chromium.orgc4c98702013-04-22 14:28:01 +0000204void SkSurface_Base::aboutToDraw(ContentChangeMode mode) {
reed@google.com97af1a62012-08-28 12:19:02 +0000205 this->dirtyGenerationID();
206
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +0000207 SkASSERT(!fCachedCanvas || fCachedCanvas->getSurfaceBase() == this);
reed@google.com97af1a62012-08-28 12:19:02 +0000208
bsalomon49f085d2014-09-05 13:34:00 -0700209 if (fCachedImage) {
reed@google.com97af1a62012-08-28 12:19:02 +0000210 // the surface may need to fork its backend, if its sharing it with
211 // the cached image. Note: we only call if there is an outstanding owner
212 // on the image (besides us).
reed26e0e582015-07-29 11:44:52 -0700213 bool unique = fCachedImage->unique();
214 if (!unique) {
commit-bot@chromium.orgc4c98702013-04-22 14:28:01 +0000215 this->onCopyOnWrite(mode);
reed@google.com97af1a62012-08-28 12:19:02 +0000216 }
217
218 // regardless of copy-on-write, we must drop our cached image now, so
219 // that the next request will get our new contents.
Robert Phillipsa54ccb22017-01-31 07:40:33 -0500220 fCachedImage.reset();
reed26e0e582015-07-29 11:44:52 -0700221
222 if (unique) {
223 // Our content isn't held by any image now, so we can consider that content mutable.
224 // Raster surfaces need to be told it's safe to consider its pixels mutable again.
225 // We make this call after the ->unref() so the subclass can assert there are no images.
226 this->onRestoreBackingMutability();
227 }
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +0000228 } else if (kDiscard_ContentChangeMode == mode) {
229 this->onDiscard();
reed@google.com97af1a62012-08-28 12:19:02 +0000230 }
231}
232
233uint32_t SkSurface_Base::newGenerationID() {
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +0000234 SkASSERT(!fCachedCanvas || fCachedCanvas->getSurfaceBase() == this);
Mike Klein0ec1c572018-12-04 11:52:51 -0500235 static std::atomic<uint32_t> nextID{1};
236 return nextID++;
reed@google.com97af1a62012-08-28 12:19:02 +0000237}
238
reed@google.com889b09e2012-07-27 21:10:42 +0000239static SkSurface_Base* asSB(SkSurface* surface) {
240 return static_cast<SkSurface_Base*>(surface);
241}
242
243///////////////////////////////////////////////////////////////////////////////
244
reed4a8126e2014-09-22 07:29:03 -0700245SkSurface::SkSurface(int width, int height, const SkSurfaceProps* props)
246 : fProps(SkSurfacePropsCopyOrDefault(props)), fWidth(width), fHeight(height)
247{
reedb2497c22014-12-31 12:31:43 -0800248 SkASSERT(fWidth > 0);
249 SkASSERT(fHeight > 0);
reed@google.com1360c522014-01-08 21:25:26 +0000250 fGenerationID = 0;
251}
252
reed4a8126e2014-09-22 07:29:03 -0700253SkSurface::SkSurface(const SkImageInfo& info, const SkSurfaceProps* props)
254 : fProps(SkSurfacePropsCopyOrDefault(props)), fWidth(info.width()), fHeight(info.height())
255{
reedb2497c22014-12-31 12:31:43 -0800256 SkASSERT(fWidth > 0);
257 SkASSERT(fHeight > 0);
reed@google.com889b09e2012-07-27 21:10:42 +0000258 fGenerationID = 0;
259}
260
reed@google.com97af1a62012-08-28 12:19:02 +0000261uint32_t SkSurface::generationID() {
262 if (0 == fGenerationID) {
263 fGenerationID = asSB(this)->newGenerationID();
264 }
265 return fGenerationID;
266}
267
commit-bot@chromium.orgc4c98702013-04-22 14:28:01 +0000268void SkSurface::notifyContentWillChange(ContentChangeMode mode) {
269 asSB(this)->aboutToDraw(mode);
reed@google.com97af1a62012-08-28 12:19:02 +0000270}
271
reed@google.com9ea5a3b2012-07-30 21:03:46 +0000272SkCanvas* SkSurface::getCanvas() {
273 return asSB(this)->getCachedCanvas();
reed@google.com889b09e2012-07-27 21:10:42 +0000274}
275
Robert Phillipsac6b1fa2017-03-20 08:38:50 -0400276sk_sp<SkImage> SkSurface::makeImageSnapshot() {
277 return asSB(this)->refCachedImage();
reed@google.com889b09e2012-07-27 21:10:42 +0000278}
279
Mike Reed114bde82018-11-21 09:12:09 -0500280sk_sp<SkImage> SkSurface::makeImageSnapshot(const SkIRect& srcBounds) {
281 const SkIRect surfBounds = { 0, 0, fWidth, fHeight };
282 SkIRect bounds = srcBounds;
283 if (!bounds.intersect(surfBounds)) {
284 return nullptr;
285 }
286 SkASSERT(!bounds.isEmpty());
287 if (bounds == surfBounds) {
288 return this->makeImageSnapshot();
289 } else {
290 return asSB(this)->onNewImageSnapshot(&bounds);
291 }
292}
293
reede8f30622016-03-23 18:59:25 -0700294sk_sp<SkSurface> SkSurface::makeSurface(const SkImageInfo& info) {
mike@reedtribe.orgb9476252012-11-15 02:37:45 +0000295 return asSB(this)->onNewSurface(info);
reed@google.com889b09e2012-07-27 21:10:42 +0000296}
297
298void SkSurface::draw(SkCanvas* canvas, SkScalar x, SkScalar y,
299 const SkPaint* paint) {
300 return asSB(this)->onDraw(canvas, x, y, paint);
301}
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000302
reed6ceeebd2016-03-09 14:26:26 -0800303bool SkSurface::peekPixels(SkPixmap* pmap) {
304 return this->getCanvas()->peekPixels(pmap);
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000305}
reed4a8126e2014-09-22 07:29:03 -0700306
Mike Reed353196f2017-07-21 11:01:18 -0400307bool SkSurface::readPixels(const SkPixmap& pm, int srcX, int srcY) {
308 return this->getCanvas()->readPixels(pm, srcX, srcY);
309}
310
reed7543aa22014-12-09 14:39:44 -0800311bool SkSurface::readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
312 int srcX, int srcY) {
Mike Reed353196f2017-07-21 11:01:18 -0400313 return this->readPixels({dstInfo, dstPixels, dstRowBytes}, srcX, srcY);
314}
315
316bool SkSurface::readPixels(const SkBitmap& bitmap, int srcX, int srcY) {
317 SkPixmap pm;
318 return bitmap.peekPixels(&pm) && this->readPixels(pm, srcX, srcY);
reed7543aa22014-12-09 14:39:44 -0800319}
320
Brian Salomon201700f2019-05-17 12:05:44 -0400321void SkSurface::asyncRescaleAndReadPixels(const SkImageInfo& info, const SkIRect& srcRect,
322 RescaleGamma rescaleGamma, SkFilterQuality rescaleQuality,
323 ReadPixelsCallback callback, ReadPixelsContext context) {
Brian Salomonab32f652019-05-10 14:24:50 -0400324 if (!SkIRect::MakeWH(this->width(), this->height()).contains(srcRect) ||
Brian Salomon201700f2019-05-17 12:05:44 -0400325 !SkImageInfoIsValid(info)) {
Brian Salomonab32f652019-05-10 14:24:50 -0400326 callback(context, nullptr, 0);
327 return;
328 }
Brian Salomon031b0ba2019-05-23 11:05:26 -0400329 asSB(this)->onAsyncRescaleAndReadPixels(info, srcRect, rescaleGamma, rescaleQuality, callback,
330 context);
Brian Salomonab32f652019-05-10 14:24:50 -0400331}
332
Mike Reed4c790bd2018-02-08 14:10:40 -0500333void SkSurface::writePixels(const SkPixmap& pmap, int x, int y) {
334 if (pmap.addr() == nullptr || pmap.width() <= 0 || pmap.height() <= 0) {
335 return;
336 }
337
338 const SkIRect srcR = SkIRect::MakeXYWH(x, y, pmap.width(), pmap.height());
339 const SkIRect dstR = SkIRect::MakeWH(this->width(), this->height());
340 if (SkIRect::Intersects(srcR, dstR)) {
341 ContentChangeMode mode = kRetain_ContentChangeMode;
342 if (srcR.contains(dstR)) {
343 mode = kDiscard_ContentChangeMode;
344 }
345 asSB(this)->aboutToDraw(mode);
346 asSB(this)->onWritePixels(pmap, x, y);
347 }
348}
349
350void SkSurface::writePixels(const SkBitmap& src, int x, int y) {
351 SkPixmap pm;
352 if (src.peekPixels(&pm)) {
353 this->writePixels(pm, x, y);
354 }
355}
356
Robert Phillips8caf85f2018-04-05 09:30:38 -0400357GrBackendTexture SkSurface::getBackendTexture(BackendHandleAccess access) {
358 return asSB(this)->onGetBackendTexture(access);
359}
360
361GrBackendRenderTarget SkSurface::getBackendRenderTarget(BackendHandleAccess access) {
362 return asSB(this)->onGetBackendRenderTarget(access);
363}
Robert Phillips8caf85f2018-04-05 09:30:38 -0400364
Greg Daniela5cb7812017-06-16 09:45:32 -0400365void SkSurface::flush() {
Greg Daniele6bfb7d2019-04-17 15:26:11 -0400366 this->flush(BackendSurfaceAccess::kNoAccess, GrFlushInfo());
Greg Danielbae71212019-03-01 15:24:35 -0500367}
368
Greg Daniele6bfb7d2019-04-17 15:26:11 -0400369GrSemaphoresSubmitted SkSurface::flush(BackendSurfaceAccess access, const GrFlushInfo& flushInfo) {
370 return asSB(this)->onFlush(access, flushInfo);
Greg Daniela5cb7812017-06-16 09:45:32 -0400371}
372
Greg Daniel5816b3d2019-04-22 11:46:41 -0400373GrSemaphoresSubmitted SkSurface::flush(BackendSurfaceAccess access, GrFlushFlags flags,
374 int numSemaphores, GrBackendSemaphore signalSemaphores[],
375 GrGpuFinishedProc finishedProc,
376 GrGpuFinishedContext finishedContext) {
377 GrFlushInfo info;
378 info.fFlags = flags;
379 info.fNumSemaphores = numSemaphores;
380 info.fSignalSemaphores = signalSemaphores;
381 info.fFinishedProc = finishedProc;
382 info.fFinishedContext = finishedContext;
383 return this->flush(access, info);
384}
385
Greg Danielb9990e42019-04-10 16:28:52 -0400386GrSemaphoresSubmitted SkSurface::flush(BackendSurfaceAccess access, FlushFlags flags,
387 int numSemaphores, GrBackendSemaphore signalSemaphores[]) {
388 GrFlushFlags grFlags = flags == kSyncCpu_FlushFlag ? kSyncCpu_GrFlushFlag : kNone_GrFlushFlags;
Greg Daniele6bfb7d2019-04-17 15:26:11 -0400389 GrFlushInfo info;
390 info.fFlags = grFlags;
391 info.fNumSemaphores = numSemaphores;
392 info.fSignalSemaphores = signalSemaphores;
393 return this->flush(access, info);
Greg Danielb9990e42019-04-10 16:28:52 -0400394}
395
Greg Daniel51316782017-08-02 15:10:09 +0000396GrSemaphoresSubmitted SkSurface::flushAndSignalSemaphores(int numSemaphores,
397 GrBackendSemaphore signalSemaphores[]) {
Greg Daniele6bfb7d2019-04-17 15:26:11 -0400398 GrFlushInfo info;
399 info.fNumSemaphores = numSemaphores;
400 info.fSignalSemaphores = signalSemaphores;
401 return this->flush(BackendSurfaceAccess::kNoAccess, info);
Greg Daniela5cb7812017-06-16 09:45:32 -0400402}
403
Greg Danielc64ee462017-06-15 16:59:49 -0400404bool SkSurface::wait(int numSemaphores, const GrBackendSemaphore* waitSemaphores) {
405 return asSB(this)->onWait(numSemaphores, waitSemaphores);
ericrkf7b8b8a2016-02-24 14:49:51 -0800406}
407
Robert Phillipsad8a43f2017-08-30 12:06:35 -0400408bool SkSurface::characterize(SkSurfaceCharacterization* characterization) const {
409 return asSB(const_cast<SkSurface*>(this))->onCharacterize(characterization);
410}
411
Robert Phillips7ffbcf92017-12-04 12:52:46 -0500412bool SkSurface::draw(SkDeferredDisplayList* ddl) {
Robert Phillipsad8a43f2017-08-30 12:06:35 -0400413 return asSB(this)->onDraw(ddl);
414}
415
reed4a8126e2014-09-22 07:29:03 -0700416//////////////////////////////////////////////////////////////////////////////////////
Mike Kleinc0bd9f92019-04-23 12:05:21 -0500417#include "include/utils/SkNoDrawCanvas.h"
Mike Reed44d04bd2017-06-28 19:57:21 -0400418
419class SkNullSurface : public SkSurface_Base {
420public:
421 SkNullSurface(int width, int height) : SkSurface_Base(width, height, nullptr) {}
422
423protected:
424 SkCanvas* onNewCanvas() override {
425 return new SkNoDrawCanvas(this->width(), this->height());
426 }
427 sk_sp<SkSurface> onNewSurface(const SkImageInfo& info) override {
428 return MakeNull(info.width(), info.height());
429 }
Mike Reed114bde82018-11-21 09:12:09 -0500430 sk_sp<SkImage> onNewImageSnapshot(const SkIRect* subsetOrNull) override { return nullptr; }
Mike Reed4c790bd2018-02-08 14:10:40 -0500431 void onWritePixels(const SkPixmap&, int x, int y) override {}
Mike Reed44d04bd2017-06-28 19:57:21 -0400432 void onDraw(SkCanvas*, SkScalar x, SkScalar y, const SkPaint*) override {}
433 void onCopyOnWrite(ContentChangeMode) override {}
434};
435
436sk_sp<SkSurface> SkSurface::MakeNull(int width, int height) {
437 if (width < 1 || height < 1) {
438 return nullptr;
439 }
440 return sk_sp<SkSurface>(new SkNullSurface(width, height));
441}
442
443//////////////////////////////////////////////////////////////////////////////////////
reed4a8126e2014-09-22 07:29:03 -0700444
445#if !SK_SUPPORT_GPU
446
Brian Salomonbdecacf2018-02-02 20:32:49 -0500447sk_sp<SkSurface> SkSurface::MakeRenderTarget(GrContext*, SkBudgeted, const SkImageInfo&, int,
448 GrSurfaceOrigin, const SkSurfaceProps*, bool) {
halcanary96fcdcc2015-08-27 07:41:13 -0700449 return nullptr;
reed4a8126e2014-09-22 07:29:03 -0700450}
451
Robert Phillips9338c602019-02-19 12:52:29 -0500452sk_sp<SkSurface> SkSurface::MakeRenderTarget(GrRecordingContext*, const SkSurfaceCharacterization&,
Robert Phillips6b6fcc72018-03-30 13:57:00 -0400453 SkBudgeted) {
454 return nullptr;
455}
456
Greg Daniel94403452017-04-18 15:52:36 -0400457sk_sp<SkSurface> SkSurface::MakeFromBackendTexture(GrContext*, const GrBackendTexture&,
458 GrSurfaceOrigin origin, int sampleCnt,
Greg Danielfaa095e2017-12-19 13:15:02 -0500459 SkColorType, sk_sp<SkColorSpace>,
Greg Daniel8ce79912019-02-05 10:08:43 -0500460 const SkSurfaceProps*,
461 TextureReleaseProc, ReleaseContext) {
Greg Danielfaa095e2017-12-19 13:15:02 -0500462 return nullptr;
463}
464
reede8f30622016-03-23 18:59:25 -0700465sk_sp<SkSurface> SkSurface::MakeFromBackendRenderTarget(GrContext*,
Greg Daniel94403452017-04-18 15:52:36 -0400466 const GrBackendRenderTarget&,
467 GrSurfaceOrigin origin,
Greg Danielfaa095e2017-12-19 13:15:02 -0500468 SkColorType,
469 sk_sp<SkColorSpace>,
Greg Daniel8ce79912019-02-05 10:08:43 -0500470 const SkSurfaceProps*,
471 RenderTargetReleaseProc, ReleaseContext) {
Greg Danielfaa095e2017-12-19 13:15:02 -0500472 return nullptr;
473}
474
Greg Daniel94403452017-04-18 15:52:36 -0400475sk_sp<SkSurface> SkSurface::MakeFromBackendTextureAsRenderTarget(GrContext*,
Greg Daniel94403452017-04-18 15:52:36 -0400476 const GrBackendTexture&,
477 GrSurfaceOrigin origin,
478 int sampleCnt,
Greg Danielfaa095e2017-12-19 13:15:02 -0500479 SkColorType,
480 sk_sp<SkColorSpace>,
481 const SkSurfaceProps*) {
482 return nullptr;
483}
484
reed4a8126e2014-09-22 07:29:03 -0700485#endif