blob: 1408a71562571dab63ad5275bfa4933c2e0e95aa [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@google.comac10a2d2010-12-22 21:39:39 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2010 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
reed@google.comac10a2d2010-12-22 21:39:39 +00007 */
8
reed@google.comac10a2d2010-12-22 21:39:39 +00009#ifndef SkGpuDevice_DEFINED
10#define SkGpuDevice_DEFINED
11
12#include "SkGr.h"
reed@google.comaf951c92011-06-16 19:10:39 +000013#include "SkBitmap.h"
reed89443ab2014-06-27 11:34:19 -070014#include "SkDevice.h"
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +000015#include "SkPicture.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000016#include "SkRegion.h"
bsalomonafe30052015-01-16 07:32:33 -080017#include "SkSurface.h"
bsalomon@google.com50398bf2011-07-26 20:45:30 +000018#include "GrContext.h"
bsalomonafbf2d62014-09-30 12:18:44 -070019#include "GrSurfacePriv.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000020
21struct SkDrawProcs;
reed@google.comac10a2d2010-12-22 21:39:39 +000022struct GrSkDrawProcs;
reed@google.comac10a2d2010-12-22 21:39:39 +000023
robertphillips64bf7672014-08-21 13:07:35 -070024class GrAccelData;
bsalomonb1b01992015-11-18 10:56:08 -080025class GrTextureProducer;
robertphillips64bf7672014-08-21 13:07:35 -070026struct GrCachedLayer;
commit-bot@chromium.orgddf2bfb2014-01-30 16:41:23 +000027
reed@google.comac10a2d2010-12-22 21:39:39 +000028/**
reed89443ab2014-06-27 11:34:19 -070029 * Subclass of SkBaseDevice, which directs all drawing to the GrGpu owned by the
reed@google.comac10a2d2010-12-22 21:39:39 +000030 * canvas.
31 */
reed89443ab2014-06-27 11:34:19 -070032class SK_API SkGpuDevice : public SkBaseDevice {
reed@google.comac10a2d2010-12-22 21:39:39 +000033public:
bsalomon74f681d2015-06-23 14:38:48 -070034 enum InitContents {
35 kClear_InitContents,
36 kUninit_InitContents
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +000037 };
bsalomon@google.com123ac1d2013-03-28 19:18:12 +000038
39 /**
bsalomonafe30052015-01-16 07:32:33 -080040 * Creates an SkGpuDevice from a GrRenderTarget.
bsalomon@google.com123ac1d2013-03-28 19:18:12 +000041 */
bsalomon74f681d2015-06-23 14:38:48 -070042 static SkGpuDevice* Create(GrRenderTarget* target, const SkSurfaceProps*, InitContents);
bsalomon@google.com123ac1d2013-03-28 19:18:12 +000043
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +000044 /**
senorblancod0d37ca2015-04-02 04:54:56 -070045 * Creates an SkGpuDevice from a GrRenderTarget whose texture width/height is
46 * different than its actual width/height (e.g., approx-match scratch texture).
47 */
48 static SkGpuDevice* Create(GrRenderTarget* target, int width, int height,
bsalomon74f681d2015-06-23 14:38:48 -070049 const SkSurfaceProps*, InitContents);
senorblancod0d37ca2015-04-02 04:54:56 -070050
51 /**
bsalomonafe30052015-01-16 07:32:33 -080052 * New device that will create an offscreen renderTarget based on the ImageInfo and
53 * sampleCount. The Budgeted param controls whether the device's backing store counts against
halcanary96fcdcc2015-08-27 07:41:13 -070054 * the resource cache budget. On failure, returns nullptr.
commit-bot@chromium.org15a14052014-02-16 00:59:25 +000055 */
bsalomonafe30052015-01-16 07:32:33 -080056 static SkGpuDevice* Create(GrContext*, SkSurface::Budgeted, const SkImageInfo&,
bsalomon74f681d2015-06-23 14:38:48 -070057 int sampleCount, const SkSurfaceProps*, InitContents);
commit-bot@chromium.org15a14052014-02-16 00:59:25 +000058
reed@google.comac10a2d2010-12-22 21:39:39 +000059 virtual ~SkGpuDevice();
reed@google.com7b201d22011-01-11 18:59:23 +000060
reedb2db8982014-11-13 12:41:02 -080061 SkGpuDevice* cloneDevice(const SkSurfaceProps& props) {
reed76033be2015-03-14 10:54:31 -070062 SkBaseDevice* dev = this->onCreateDevice(CreateInfo(this->imageInfo(), kPossible_TileUsage,
63 props.pixelGeometry()),
halcanary96fcdcc2015-08-27 07:41:13 -070064 nullptr);
reedb2db8982014-11-13 12:41:02 -080065 return static_cast<SkGpuDevice*>(dev);
66 }
67
joshualitt5f5a8d72015-02-25 14:09:45 -080068 GrContext* context() const { return fContext; }
reed@google.comac10a2d2010-12-22 21:39:39 +000069
reed8eddfb52014-12-04 07:50:14 -080070 // set all pixels to 0
71 void clearAll();
72
kkinnunenabcfab42015-02-22 22:53:44 -080073 void replaceRenderTarget(bool shouldRetainContent);
74
mtklein36352bf2015-03-25 18:17:31 -070075 GrRenderTarget* accessRenderTarget() override;
reed@google.comac10a2d2010-12-22 21:39:39 +000076
mtklein36352bf2015-03-25 18:17:31 -070077 SkImageInfo imageInfo() const override {
senorblancod0d37ca2015-04-02 04:54:56 -070078 return fLegacyBitmap.info();
robertphillips@google.com07f81a52013-09-17 12:26:23 +000079 }
reed@google.comac10a2d2010-12-22 21:39:39 +000080
mtklein36352bf2015-03-25 18:17:31 -070081 void drawPaint(const SkDraw&, const SkPaint& paint) override;
reed@google.comac10a2d2010-12-22 21:39:39 +000082 virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, size_t count,
mtklein36352bf2015-03-25 18:17:31 -070083 const SkPoint[], const SkPaint& paint) override;
reed@google.comac10a2d2010-12-22 21:39:39 +000084 virtual void drawRect(const SkDraw&, const SkRect& r,
mtklein36352bf2015-03-25 18:17:31 -070085 const SkPaint& paint) override;
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +000086 virtual void drawRRect(const SkDraw&, const SkRRect& r,
mtklein36352bf2015-03-25 18:17:31 -070087 const SkPaint& paint) override;
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +000088 virtual void drawDRRect(const SkDraw& draw, const SkRRect& outer,
mtklein36352bf2015-03-25 18:17:31 -070089 const SkRRect& inner, const SkPaint& paint) override;
jvanverth@google.com46d3d392013-01-22 13:34:01 +000090 virtual void drawOval(const SkDraw&, const SkRect& oval,
mtklein36352bf2015-03-25 18:17:31 -070091 const SkPaint& paint) override;
reed@google.comac10a2d2010-12-22 21:39:39 +000092 virtual void drawPath(const SkDraw&, const SkPath& path,
93 const SkPaint& paint, const SkMatrix* prePathMatrix,
mtklein36352bf2015-03-25 18:17:31 -070094 bool pathIsMutable) override;
reed@google.comac10a2d2010-12-22 21:39:39 +000095 virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap,
mtklein36352bf2015-03-25 18:17:31 -070096 const SkMatrix&, const SkPaint&) override;
reed@google.com33535f32012-09-25 15:37:50 +000097 virtual void drawBitmapRect(const SkDraw&, const SkBitmap&,
98 const SkRect* srcOrNull, const SkRect& dst,
reed562fe472015-07-28 07:35:14 -070099 const SkPaint& paint, SkCanvas::SrcRectConstraint) override;
reed@google.comac10a2d2010-12-22 21:39:39 +0000100 virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap,
mtklein36352bf2015-03-25 18:17:31 -0700101 int x, int y, const SkPaint& paint) override;
reed@google.comac10a2d2010-12-22 21:39:39 +0000102 virtual void drawText(const SkDraw&, const void* text, size_t len,
mtklein36352bf2015-03-25 18:17:31 -0700103 SkScalar x, SkScalar y, const SkPaint&) override;
reed@google.comac10a2d2010-12-22 21:39:39 +0000104 virtual void drawPosText(const SkDraw&, const void* text, size_t len,
fmalita05c4a432014-09-29 06:29:53 -0700105 const SkScalar pos[], int scalarsPerPos,
mtklein36352bf2015-03-25 18:17:31 -0700106 const SkPoint& offset, const SkPaint&) override;
joshualitt9c328182015-03-23 08:13:04 -0700107 virtual void drawTextBlob(const SkDraw&, const SkTextBlob*, SkScalar x, SkScalar y,
mtklein36352bf2015-03-25 18:17:31 -0700108 const SkPaint& paint, SkDrawFilter* drawFilter) override;
reed@google.comac10a2d2010-12-22 21:39:39 +0000109 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount,
110 const SkPoint verts[], const SkPoint texs[],
111 const SkColor colors[], SkXfermode* xmode,
112 const uint16_t indices[], int indexCount,
mtklein36352bf2015-03-25 18:17:31 -0700113 const SkPaint&) override;
reedca109532015-06-25 16:25:25 -0700114 void drawAtlas(const SkDraw&, const SkImage* atlas, const SkRSXform[], const SkRect[],
115 const SkColor[], int count, SkXfermode::Mode, const SkPaint&) override;
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000116 virtual void drawDevice(const SkDraw&, SkBaseDevice*, int x, int y,
mtklein36352bf2015-03-25 18:17:31 -0700117 const SkPaint&) override;
reeda85d4d02015-05-06 12:56:48 -0700118 void drawImage(const SkDraw&, const SkImage*, SkScalar x, SkScalar y, const SkPaint&) override;
119 void drawImageRect(const SkDraw&, const SkImage*, const SkRect* src, const SkRect& dst,
reeda5517e22015-07-14 10:54:12 -0700120 const SkPaint&, SkCanvas::SrcRectConstraint) override;
reed@google.com7b201d22011-01-11 18:59:23 +0000121
joshualitt33a5fce2015-11-18 13:28:51 -0800122 void drawImageNine(const SkDraw& draw, const SkImage* image, const SkIRect& center,
123 const SkRect& dst, const SkPaint& paint) override;
124 void drawBitmapNine(const SkDraw& draw, const SkBitmap& bitmap, const SkIRect& center,
125 const SkRect& dst, const SkPaint& paint) override;
126
mtklein36352bf2015-03-25 18:17:31 -0700127 void flush() override;
reed@google.com7b201d22011-01-11 18:59:23 +0000128
mtklein36352bf2015-03-25 18:17:31 -0700129 void onAttachToCanvas(SkCanvas* canvas) override;
130 void onDetachFromCanvas() override;
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000131
mtklein36352bf2015-03-25 18:17:31 -0700132 const SkBitmap& onAccessBitmap() override;
reed41e010c2015-06-09 12:16:53 -0700133 bool onAccessPixels(SkPixmap*) override;
senorblanco@chromium.orgb7b7eb32014-03-19 18:24:04 +0000134
mtklein36352bf2015-03-25 18:17:31 -0700135 bool canHandleImageFilter(const SkImageFilter*) override;
senorblanco@chromium.org4cb543d2014-03-14 15:44:01 +0000136 virtual bool filterImage(const SkImageFilter*, const SkBitmap&,
137 const SkImageFilter::Context&,
mtklein36352bf2015-03-25 18:17:31 -0700138 SkBitmap*, SkIPoint*) override;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000139
senorblancod0d37ca2015-04-02 04:54:56 -0700140 bool filterTexture(GrContext*, GrTexture*, int width, int height, const SkImageFilter*,
robertphillips7b9e8a42014-12-11 08:20:31 -0800141 const SkImageFilter::Context&,
142 SkBitmap* result, SkIPoint* offset);
143
reed13ccbf82015-10-20 09:56:52 -0700144 static SkImageFilter::Cache* NewImageFilterCache();
145
reed@google.comac10a2d2010-12-22 21:39:39 +0000146protected:
mtklein36352bf2015-03-25 18:17:31 -0700147 bool onReadPixels(const SkImageInfo&, void*, size_t, int, int) override;
148 bool onWritePixels(const SkImageInfo&, const void*, size_t, int, int) override;
robertphillips9c240a12015-05-28 07:45:59 -0700149 bool onShouldDisableLCD(const SkPaint&) const final;
bsalomon@google.comc6980972011-11-02 19:57:21 +0000150
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000151 /** PRIVATE / EXPERIMENTAL -- do not call */
reedd5fa1a42014-08-09 11:08:05 -0700152 virtual bool EXPERIMENTAL_drawPicture(SkCanvas* canvas, const SkPicture* picture,
mtklein36352bf2015-03-25 18:17:31 -0700153 const SkMatrix*, const SkPaint*) override;
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000154
reed@google.comac10a2d2010-12-22 21:39:39 +0000155private:
joshualitt44701df2015-02-23 14:44:57 -0800156 GrContext* fContext;
157 GrSkDrawProcs* fDrawProcs;
158 SkAutoTUnref<const SkClipStack> fClipStack;
159 SkIPoint fClipOrigin;
joshualitt570d2f82015-02-25 13:19:48 -0800160 GrClip fClip;
robertphillipsea461502015-05-26 11:38:03 -0700161 SkAutoTUnref<GrDrawContext> fDrawContext;
joshualitt44701df2015-02-23 14:44:57 -0800162 GrRenderTarget* fRenderTarget;
reed89443ab2014-06-27 11:34:19 -0700163 // remove when our clients don't rely on accessBitmap()
joshualitt44701df2015-02-23 14:44:57 -0800164 SkBitmap fLegacyBitmap;
165 bool fNeedClear;
bsalomon74f681d2015-06-23 14:38:48 -0700166 bool fOpaque;
167
168 enum Flags {
169 kNeedClear_Flag = 1 << 0, //!< Surface requires an initial clear
170 kIsOpaque_Flag = 1 << 1, //!< Hint from client that rendering to this device will be
171 // opaque even if the config supports alpha.
172 };
173 static bool CheckAlphaTypeAndGetFlags(const SkImageInfo* info, InitContents init,
174 unsigned* flags);
reed89443ab2014-06-27 11:34:19 -0700175
senorblancod0d37ca2015-04-02 04:54:56 -0700176 SkGpuDevice(GrRenderTarget*, int width, int height, const SkSurfaceProps*, unsigned flags);
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000177
mtklein36352bf2015-03-25 18:17:31 -0700178 SkBaseDevice* onCreateDevice(const CreateInfo&, const SkPaint*) override;
bsalomon@google.come97f0852011-06-17 13:10:25 +0000179
mtklein36352bf2015-03-25 18:17:31 -0700180 SkSurface* newSurface(const SkImageInfo&, const SkSurfaceProps&) override;
reed@google.com76f10a32014-02-05 15:32:21 +0000181
mtklein36352bf2015-03-25 18:17:31 -0700182 SkImageFilter::Cache* getImageFilterCache() override;
reed841010f2014-09-10 07:23:32 -0700183
mtklein36352bf2015-03-25 18:17:31 -0700184 bool forceConservativeRasterClip() const override { return true; }
senorblanco55b6d8b2014-07-30 11:26:46 -0700185
joshualitt5531d512014-12-17 15:50:11 -0800186 // sets the render target and clip on context
187 void prepareDraw(const SkDraw&);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000188
189 /**
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000190 * Helper functions called by drawBitmapCommon. By the time these are called the SkDraw's
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000191 * matrix, clip, and the device's render target has already been set on GrContext.
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000192 */
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000193
194 // The tileSize and clippedSrcRect will be valid only if true is returned.
reed85d91782015-09-10 14:33:38 -0700195 bool shouldTileImageID(uint32_t imageID, const SkIRect& imageRect,
196 const SkMatrix& viewMatrix,
197 const GrTextureParams& params,
198 const SkRect* srcRectPtr,
199 int maxTileSize,
200 int* tileSize,
201 SkIRect* clippedSubset) const;
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000202 bool shouldTileBitmap(const SkBitmap& bitmap,
joshualitt5531d512014-12-17 15:50:11 -0800203 const SkMatrix& viewMatrix,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000204 const GrTextureParams& sampler,
bsalomon@google.comaf562b42013-10-24 17:52:07 +0000205 const SkRect* srcRectPtr,
206 int maxTileSize,
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000207 int* tileSize,
208 SkIRect* clippedSrcRect) const;
reed85d91782015-09-10 14:33:38 -0700209 // Just returns the predicate, not the out-tileSize or out-clippedSubset, as they are not
210 // needed at the moment.
211 bool shouldTileImage(const SkImage* image, const SkRect* srcRectPtr,
212 SkCanvas::SrcRectConstraint constraint, SkFilterQuality quality,
213 const SkMatrix& viewMatrix) const;
214
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000215 void internalDrawBitmap(const SkBitmap&,
joshualitt5531d512014-12-17 15:50:11 -0800216 const SkMatrix& viewMatrix,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000217 const SkRect&,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000218 const GrTextureParams& params,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000219 const SkPaint& paint,
reeda5517e22015-07-14 10:54:12 -0700220 SkCanvas::SrcRectConstraint,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000221 bool bicubic,
222 bool needsTextureDomain);
bsalomonc55271f2015-11-09 11:55:57 -0800223
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000224 void drawTiledBitmap(const SkBitmap& bitmap,
joshualitt5531d512014-12-17 15:50:11 -0800225 const SkMatrix& viewMatrix,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000226 const SkRect& srcRect,
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000227 const SkIRect& clippedSrcRect,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000228 const GrTextureParams& params,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000229 const SkPaint& paint,
reeda5517e22015-07-14 10:54:12 -0700230 SkCanvas::SrcRectConstraint,
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000231 int tileSize,
232 bool bicubic);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000233
bsalomonb1b01992015-11-18 10:56:08 -0800234 void drawTextureProducer(GrTextureProducer*,
bsalomonc55271f2015-11-09 11:55:57 -0800235 bool alphaOnly,
236 const SkRect* srcRect,
237 const SkRect* dstRect,
bsalomonb1b01992015-11-18 10:56:08 -0800238 SkCanvas::SrcRectConstraint,
bsalomonc55271f2015-11-09 11:55:57 -0800239 const SkMatrix& viewMatrix,
bsalomonb1b01992015-11-18 10:56:08 -0800240 const GrClip&,
241 const SkPaint&);
bsalomonc55271f2015-11-09 11:55:57 -0800242
bsalomonb1b01992015-11-18 10:56:08 -0800243 void drawTextureProducerImpl(GrTextureProducer*,
bsalomonc55271f2015-11-09 11:55:57 -0800244 bool alphaOnly,
245 const SkRect& clippedSrcRect,
246 const SkRect& clippedDstRect,
bsalomonb1b01992015-11-18 10:56:08 -0800247 SkCanvas::SrcRectConstraint,
bsalomonc55271f2015-11-09 11:55:57 -0800248 const SkMatrix& viewMatrix,
249 const SkMatrix& srcToDstMatrix,
bsalomonb1b01992015-11-18 10:56:08 -0800250 const GrClip&,
251 const SkPaint&);
bsalomonc55271f2015-11-09 11:55:57 -0800252
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000253 bool drawDashLine(const SkPoint pts[2], const SkPaint& paint);
254
kkinnunenabcfab42015-02-22 22:53:44 -0800255 static GrRenderTarget* CreateRenderTarget(GrContext*, SkSurface::Budgeted, const SkImageInfo&,
256 int sampleCount);
257
joshualittdbd35932015-04-02 09:19:04 -0700258 friend class GrAtlasTextContext;
robertphillips7b05ff12015-06-19 14:14:54 -0700259 friend class SkSurface_Gpu; // for access to surfaceProps
reed89443ab2014-06-27 11:34:19 -0700260 typedef SkBaseDevice INHERITED;
reed@google.comac10a2d2010-12-22 21:39:39 +0000261};
262
263#endif