blob: 4c6a0f37abb5ad5df786cfbc1b436f93661293ef [file] [log] [blame]
reed@google.comac10a2d2010-12-22 21:39:39 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * Copyright 2010 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.
reed@google.comac10a2d2010-12-22 21:39:39 +00006 */
7
reed@google.comac10a2d2010-12-22 21:39:39 +00008#ifndef SkGpuDevice_DEFINED
9#define SkGpuDevice_DEFINED
10
11#include "SkGr.h"
reed@google.comaf951c92011-06-16 19:10:39 +000012#include "SkBitmap.h"
reed89443ab2014-06-27 11:34:19 -070013#include "SkDevice.h"
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +000014#include "SkPicture.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000015#include "SkRegion.h"
bsalomonafe30052015-01-16 07:32:33 -080016#include "SkSurface.h"
joshualitt06dd0a82016-01-08 06:32:31 -080017#include "GrDrawContext.h"
bsalomon@google.com50398bf2011-07-26 20:45:30 +000018#include "GrContext.h"
bsalomonafbf2d62014-09-30 12:18:44 -070019#include "GrSurfacePriv.h"
erikchen9a1ed5d2016-02-10 16:32:34 -080020#include "GrTypes.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000021
robertphillips64bf7672014-08-21 13:07:35 -070022class GrAccelData;
bsalomonb1b01992015-11-18 10:56:08 -080023class GrTextureProducer;
robertphillips64bf7672014-08-21 13:07:35 -070024struct GrCachedLayer;
commit-bot@chromium.orgddf2bfb2014-01-30 16:41:23 +000025
reed@google.comac10a2d2010-12-22 21:39:39 +000026/**
reed89443ab2014-06-27 11:34:19 -070027 * Subclass of SkBaseDevice, which directs all drawing to the GrGpu owned by the
reed@google.comac10a2d2010-12-22 21:39:39 +000028 * canvas.
29 */
reed89443ab2014-06-27 11:34:19 -070030class SK_API SkGpuDevice : public SkBaseDevice {
reed@google.comac10a2d2010-12-22 21:39:39 +000031public:
bsalomon74f681d2015-06-23 14:38:48 -070032 enum InitContents {
33 kClear_InitContents,
34 kUninit_InitContents
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +000035 };
bsalomon@google.com123ac1d2013-03-28 19:18:12 +000036
37 /**
bsalomonafe30052015-01-16 07:32:33 -080038 * Creates an SkGpuDevice from a GrRenderTarget.
robertphillipsca6eafc2016-05-17 09:57:46 -070039 * TODO: rm this factory. It is used by SkSurface::MakeRenderTargetDirect,
40 * MakeFromBackendTexture, MakeFromBackendRenderTarget,
41 * and MakeFromBackendTextureAsRenderTarget. Only the first is worrisome.
bsalomon@google.com123ac1d2013-03-28 19:18:12 +000042 */
robertphillips24e91282016-04-29 06:46:36 -070043 static sk_sp<SkGpuDevice> Make(sk_sp<GrRenderTarget> target,
44 const SkSurfaceProps*,
45 InitContents);
bsalomon@google.com123ac1d2013-03-28 19:18:12 +000046
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +000047 /**
robertphillipsca6eafc2016-05-17 09:57:46 -070048 * Creates an SkGpuDevice from a GrDrawContext whose backing width/height is
senorblancod0d37ca2015-04-02 04:54:56 -070049 * different than its actual width/height (e.g., approx-match scratch texture).
50 */
robertphillipsca6eafc2016-05-17 09:57:46 -070051 static sk_sp<SkBaseDevice> Make(sk_sp<GrDrawContext> drawContext,
52 int width, int height,
53 InitContents);
senorblancod0d37ca2015-04-02 04:54:56 -070054
55 /**
bsalomonafe30052015-01-16 07:32:33 -080056 * New device that will create an offscreen renderTarget based on the ImageInfo and
57 * sampleCount. The Budgeted param controls whether the device's backing store counts against
halcanary96fcdcc2015-08-27 07:41:13 -070058 * the resource cache budget. On failure, returns nullptr.
commit-bot@chromium.org15a14052014-02-16 00:59:25 +000059 */
robertphillips24e91282016-04-29 06:46:36 -070060 static sk_sp<SkGpuDevice> Make(GrContext*, SkBudgeted, const SkImageInfo&,
61 int sampleCount, const SkSurfaceProps*, InitContents);
commit-bot@chromium.org15a14052014-02-16 00:59:25 +000062
joshualitt06dd0a82016-01-08 06:32:31 -080063 ~SkGpuDevice() override {}
reed@google.com7b201d22011-01-11 18:59:23 +000064
reedb2db8982014-11-13 12:41:02 -080065 SkGpuDevice* cloneDevice(const SkSurfaceProps& props) {
reed76033be2015-03-14 10:54:31 -070066 SkBaseDevice* dev = this->onCreateDevice(CreateInfo(this->imageInfo(), kPossible_TileUsage,
67 props.pixelGeometry()),
halcanary96fcdcc2015-08-27 07:41:13 -070068 nullptr);
reedb2db8982014-11-13 12:41:02 -080069 return static_cast<SkGpuDevice*>(dev);
70 }
71
reed86ae3d12016-04-26 06:57:31 -070072 GrContext* context() const override { return fContext; }
reed@google.comac10a2d2010-12-22 21:39:39 +000073
reed8eddfb52014-12-04 07:50:14 -080074 // set all pixels to 0
75 void clearAll();
76
robertphillipsca6eafc2016-05-17 09:57:46 -070077 void replaceDrawContext(bool shouldRetainContent);
kkinnunenabcfab42015-02-22 22:53:44 -080078
mtklein36352bf2015-03-25 18:17:31 -070079 GrRenderTarget* accessRenderTarget() override;
robertphillips175dd9b2016-04-28 14:32:04 -070080 GrDrawContext* accessDrawContext() override;
reed@google.comac10a2d2010-12-22 21:39:39 +000081
mtklein36352bf2015-03-25 18:17:31 -070082 SkImageInfo imageInfo() const override {
senorblancod0d37ca2015-04-02 04:54:56 -070083 return fLegacyBitmap.info();
robertphillips@google.com07f81a52013-09-17 12:26:23 +000084 }
reed@google.comac10a2d2010-12-22 21:39:39 +000085
mtklein36352bf2015-03-25 18:17:31 -070086 void drawPaint(const SkDraw&, const SkPaint& paint) override;
reed@google.comac10a2d2010-12-22 21:39:39 +000087 virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, size_t count,
mtklein36352bf2015-03-25 18:17:31 -070088 const SkPoint[], const SkPaint& paint) override;
reed@google.comac10a2d2010-12-22 21:39:39 +000089 virtual void drawRect(const SkDraw&, const SkRect& r,
mtklein36352bf2015-03-25 18:17:31 -070090 const SkPaint& paint) override;
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +000091 virtual void drawRRect(const SkDraw&, const SkRRect& r,
mtklein36352bf2015-03-25 18:17:31 -070092 const SkPaint& paint) override;
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +000093 virtual void drawDRRect(const SkDraw& draw, const SkRRect& outer,
mtklein36352bf2015-03-25 18:17:31 -070094 const SkRRect& inner, const SkPaint& paint) override;
jvanverth@google.com46d3d392013-01-22 13:34:01 +000095 virtual void drawOval(const SkDraw&, const SkRect& oval,
mtklein36352bf2015-03-25 18:17:31 -070096 const SkPaint& paint) override;
reed@google.comac10a2d2010-12-22 21:39:39 +000097 virtual void drawPath(const SkDraw&, const SkPath& path,
98 const SkPaint& paint, const SkMatrix* prePathMatrix,
mtklein36352bf2015-03-25 18:17:31 -070099 bool pathIsMutable) override;
reed@google.comac10a2d2010-12-22 21:39:39 +0000100 virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap,
mtklein36352bf2015-03-25 18:17:31 -0700101 const SkMatrix&, const SkPaint&) override;
reed@google.com33535f32012-09-25 15:37:50 +0000102 virtual void drawBitmapRect(const SkDraw&, const SkBitmap&,
103 const SkRect* srcOrNull, const SkRect& dst,
reed562fe472015-07-28 07:35:14 -0700104 const SkPaint& paint, SkCanvas::SrcRectConstraint) override;
reed@google.comac10a2d2010-12-22 21:39:39 +0000105 virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap,
mtklein36352bf2015-03-25 18:17:31 -0700106 int x, int y, const SkPaint& paint) override;
reed@google.comac10a2d2010-12-22 21:39:39 +0000107 virtual void drawText(const SkDraw&, const void* text, size_t len,
mtklein36352bf2015-03-25 18:17:31 -0700108 SkScalar x, SkScalar y, const SkPaint&) override;
reed@google.comac10a2d2010-12-22 21:39:39 +0000109 virtual void drawPosText(const SkDraw&, const void* text, size_t len,
fmalita05c4a432014-09-29 06:29:53 -0700110 const SkScalar pos[], int scalarsPerPos,
mtklein36352bf2015-03-25 18:17:31 -0700111 const SkPoint& offset, const SkPaint&) override;
joshualitt9c328182015-03-23 08:13:04 -0700112 virtual void drawTextBlob(const SkDraw&, const SkTextBlob*, SkScalar x, SkScalar y,
mtklein36352bf2015-03-25 18:17:31 -0700113 const SkPaint& paint, SkDrawFilter* drawFilter) override;
reed@google.comac10a2d2010-12-22 21:39:39 +0000114 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount,
115 const SkPoint verts[], const SkPoint texs[],
116 const SkColor colors[], SkXfermode* xmode,
117 const uint16_t indices[], int indexCount,
mtklein36352bf2015-03-25 18:17:31 -0700118 const SkPaint&) override;
reedca109532015-06-25 16:25:25 -0700119 void drawAtlas(const SkDraw&, const SkImage* atlas, const SkRSXform[], const SkRect[],
120 const SkColor[], int count, SkXfermode::Mode, const SkPaint&) override;
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000121 virtual void drawDevice(const SkDraw&, SkBaseDevice*, int x, int y,
mtklein36352bf2015-03-25 18:17:31 -0700122 const SkPaint&) override;
reeda85d4d02015-05-06 12:56:48 -0700123 void drawImage(const SkDraw&, const SkImage*, SkScalar x, SkScalar y, const SkPaint&) override;
124 void drawImageRect(const SkDraw&, const SkImage*, const SkRect* src, const SkRect& dst,
reeda5517e22015-07-14 10:54:12 -0700125 const SkPaint&, SkCanvas::SrcRectConstraint) override;
reed@google.com7b201d22011-01-11 18:59:23 +0000126
joshualitt33a5fce2015-11-18 13:28:51 -0800127 void drawImageNine(const SkDraw& draw, const SkImage* image, const SkIRect& center,
128 const SkRect& dst, const SkPaint& paint) override;
129 void drawBitmapNine(const SkDraw& draw, const SkBitmap& bitmap, const SkIRect& center,
130 const SkRect& dst, const SkPaint& paint) override;
131
mtklein36352bf2015-03-25 18:17:31 -0700132 void flush() override;
reed@google.com7b201d22011-01-11 18:59:23 +0000133
mtklein36352bf2015-03-25 18:17:31 -0700134 void onAttachToCanvas(SkCanvas* canvas) override;
135 void onDetachFromCanvas() override;
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000136
mtklein36352bf2015-03-25 18:17:31 -0700137 const SkBitmap& onAccessBitmap() override;
reed41e010c2015-06-09 12:16:53 -0700138 bool onAccessPixels(SkPixmap*) override;
senorblanco@chromium.orgb7b7eb32014-03-19 18:24:04 +0000139
jvanverth0671b962015-12-08 18:53:44 -0800140 // for debugging purposes only
141 void drawTexture(GrTexture*, const SkRect& dst, const SkPaint&);
142
reed@google.comac10a2d2010-12-22 21:39:39 +0000143protected:
mtklein36352bf2015-03-25 18:17:31 -0700144 bool onReadPixels(const SkImageInfo&, void*, size_t, int, int) override;
145 bool onWritePixels(const SkImageInfo&, const void*, size_t, int, int) override;
robertphillips9c240a12015-05-28 07:45:59 -0700146 bool onShouldDisableLCD(const SkPaint&) const final;
bsalomon@google.comc6980972011-11-02 19:57:21 +0000147
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000148 /** PRIVATE / EXPERIMENTAL -- do not call */
reedd5fa1a42014-08-09 11:08:05 -0700149 virtual bool EXPERIMENTAL_drawPicture(SkCanvas* canvas, const SkPicture* picture,
mtklein36352bf2015-03-25 18:17:31 -0700150 const SkMatrix*, const SkPaint*) override;
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000151
reed@google.comac10a2d2010-12-22 21:39:39 +0000152private:
joshualitt06dd0a82016-01-08 06:32:31 -0800153 // We want these unreffed in DrawContext, RenderTarget, GrContext order.
154 SkAutoTUnref<GrContext> fContext;
robertphillipsca6eafc2016-05-17 09:57:46 -0700155 sk_sp<GrRenderTarget> fRenderTarget;
robertphillips6c7e3252016-04-27 10:47:51 -0700156 sk_sp<GrDrawContext> fDrawContext;
joshualitt06dd0a82016-01-08 06:32:31 -0800157
joshualitt44701df2015-02-23 14:44:57 -0800158 SkAutoTUnref<const SkClipStack> fClipStack;
159 SkIPoint fClipOrigin;
cdalton846c0512016-05-13 10:25:00 -0700160 GrClipStackClip fClip;
reed89443ab2014-06-27 11:34:19 -0700161 // remove when our clients don't rely on accessBitmap()
joshualitt44701df2015-02-23 14:44:57 -0800162 SkBitmap fLegacyBitmap;
bsalomon74f681d2015-06-23 14:38:48 -0700163 bool fOpaque;
164
165 enum Flags {
166 kNeedClear_Flag = 1 << 0, //!< Surface requires an initial clear
167 kIsOpaque_Flag = 1 << 1, //!< Hint from client that rendering to this device will be
168 // opaque even if the config supports alpha.
169 };
170 static bool CheckAlphaTypeAndGetFlags(const SkImageInfo* info, InitContents init,
171 unsigned* flags);
reed89443ab2014-06-27 11:34:19 -0700172
robertphillipsca6eafc2016-05-17 09:57:46 -0700173 SkGpuDevice(sk_sp<GrDrawContext>, int width, int height, unsigned flags);
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000174
mtklein36352bf2015-03-25 18:17:31 -0700175 SkBaseDevice* onCreateDevice(const CreateInfo&, const SkPaint*) override;
bsalomon@google.come97f0852011-06-17 13:10:25 +0000176
reede8f30622016-03-23 18:59:25 -0700177 sk_sp<SkSurface> makeSurface(const SkImageInfo&, const SkSurfaceProps&) override;
reed@google.com76f10a32014-02-05 15:32:21 +0000178
senorblanco900c3672016-04-27 11:31:23 -0700179 SkImageFilterCache* getImageFilterCache() override;
reed841010f2014-09-10 07:23:32 -0700180
mtklein36352bf2015-03-25 18:17:31 -0700181 bool forceConservativeRasterClip() const override { return true; }
senorblanco55b6d8b2014-07-30 11:26:46 -0700182
joshualitt5531d512014-12-17 15:50:11 -0800183 // sets the render target and clip on context
184 void prepareDraw(const SkDraw&);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000185
186 /**
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000187 * Helper functions called by drawBitmapCommon. By the time these are called the SkDraw's
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000188 * matrix, clip, and the device's render target has already been set on GrContext.
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000189 */
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000190
191 // The tileSize and clippedSrcRect will be valid only if true is returned.
reed85d91782015-09-10 14:33:38 -0700192 bool shouldTileImageID(uint32_t imageID, const SkIRect& imageRect,
193 const SkMatrix& viewMatrix,
194 const GrTextureParams& params,
195 const SkRect* srcRectPtr,
196 int maxTileSize,
197 int* tileSize,
198 SkIRect* clippedSubset) const;
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000199 bool shouldTileBitmap(const SkBitmap& bitmap,
joshualitt5531d512014-12-17 15:50:11 -0800200 const SkMatrix& viewMatrix,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000201 const GrTextureParams& sampler,
bsalomon@google.comaf562b42013-10-24 17:52:07 +0000202 const SkRect* srcRectPtr,
203 int maxTileSize,
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000204 int* tileSize,
205 SkIRect* clippedSrcRect) const;
reed85d91782015-09-10 14:33:38 -0700206 // Just returns the predicate, not the out-tileSize or out-clippedSubset, as they are not
207 // needed at the moment.
208 bool shouldTileImage(const SkImage* image, const SkRect* srcRectPtr,
209 SkCanvas::SrcRectConstraint constraint, SkFilterQuality quality,
210 const SkMatrix& viewMatrix) const;
211
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000212 void internalDrawBitmap(const SkBitmap&,
joshualitt5531d512014-12-17 15:50:11 -0800213 const SkMatrix& viewMatrix,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000214 const SkRect&,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000215 const GrTextureParams& params,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000216 const SkPaint& paint,
reeda5517e22015-07-14 10:54:12 -0700217 SkCanvas::SrcRectConstraint,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000218 bool bicubic,
219 bool needsTextureDomain);
bsalomonc55271f2015-11-09 11:55:57 -0800220
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000221 void drawTiledBitmap(const SkBitmap& bitmap,
joshualitt5531d512014-12-17 15:50:11 -0800222 const SkMatrix& viewMatrix,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000223 const SkRect& srcRect,
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000224 const SkIRect& clippedSrcRect,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000225 const GrTextureParams& params,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000226 const SkPaint& paint,
reeda5517e22015-07-14 10:54:12 -0700227 SkCanvas::SrcRectConstraint,
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000228 int tileSize,
229 bool bicubic);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000230
bsalomonb1b01992015-11-18 10:56:08 -0800231 void drawTextureProducer(GrTextureProducer*,
bsalomonc55271f2015-11-09 11:55:57 -0800232 const SkRect* srcRect,
233 const SkRect* dstRect,
bsalomonb1b01992015-11-18 10:56:08 -0800234 SkCanvas::SrcRectConstraint,
bsalomonc55271f2015-11-09 11:55:57 -0800235 const SkMatrix& viewMatrix,
bsalomonb1b01992015-11-18 10:56:08 -0800236 const GrClip&,
237 const SkPaint&);
bsalomonc55271f2015-11-09 11:55:57 -0800238
bsalomonb1b01992015-11-18 10:56:08 -0800239 void drawTextureProducerImpl(GrTextureProducer*,
bsalomonc55271f2015-11-09 11:55:57 -0800240 const SkRect& clippedSrcRect,
241 const SkRect& clippedDstRect,
bsalomonb1b01992015-11-18 10:56:08 -0800242 SkCanvas::SrcRectConstraint,
bsalomonc55271f2015-11-09 11:55:57 -0800243 const SkMatrix& viewMatrix,
244 const SkMatrix& srcToDstMatrix,
bsalomonb1b01992015-11-18 10:56:08 -0800245 const GrClip&,
246 const SkPaint&);
bsalomonc55271f2015-11-09 11:55:57 -0800247
robertphillipsd7706102016-02-25 09:28:08 -0800248 bool drawFilledDRRect(const SkMatrix& viewMatrix, const SkRRect& outer,
249 const SkRRect& inner, const SkPaint& paint);
250
bsalomonf1ecd212015-12-09 17:06:02 -0800251 void drawProducerNine(const SkDraw&, GrTextureProducer*, const SkIRect& center,
252 const SkRect& dst, const SkPaint&);
bsalomon2bbd0c62015-12-09 12:50:56 -0800253
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000254 bool drawDashLine(const SkPoint pts[2], const SkPaint& paint);
robertphillips0851d2d2016-06-02 05:21:34 -0700255 void drawStrokedLine(const SkPoint pts[2], const SkDraw&, const SkPaint&);
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000256
robertphillipsca6eafc2016-05-17 09:57:46 -0700257 static sk_sp<GrDrawContext> CreateDrawContext(GrContext*,
258 SkBudgeted,
259 const SkImageInfo&,
260 int sampleCount,
261 const SkSurfaceProps*);
kkinnunenabcfab42015-02-22 22:53:44 -0800262
robertphillips2302de92016-03-24 07:26:32 -0700263 void drawSpriteWithFilter(const SkDraw&, const SkBitmap&, int x, int y,
264 const SkPaint&) override;
robertphillips1579e3c2016-03-24 05:01:23 -0700265
joshualittdbd35932015-04-02 09:19:04 -0700266 friend class GrAtlasTextContext;
robertphillips7b05ff12015-06-19 14:14:54 -0700267 friend class SkSurface_Gpu; // for access to surfaceProps
reed89443ab2014-06-27 11:34:19 -0700268 typedef SkBaseDevice INHERITED;
reed@google.comac10a2d2010-12-22 21:39:39 +0000269};
270
271#endif