blob: 1356a6f0fb2e1d9f395fd71dff585d7c458457b1 [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;
25struct GrCachedLayer;
commit-bot@chromium.orgcbbc4812014-01-30 22:05:47 +000026class GrTextContext;
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:
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +000034 enum Flags {
skia.committer@gmail.com99e5b522014-03-21 03:02:42 +000035 kNeedClear_Flag = 1 << 0, //!< Surface requires an initial clear
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +000036 };
bsalomon@google.com123ac1d2013-03-28 19:18:12 +000037
38 /**
bsalomonafe30052015-01-16 07:32:33 -080039 * Creates an SkGpuDevice from a GrRenderTarget.
bsalomon@google.com123ac1d2013-03-28 19:18:12 +000040 */
bsalomonafe30052015-01-16 07:32:33 -080041 static SkGpuDevice* Create(GrRenderTarget* target, const SkSurfaceProps*, unsigned flags = 0);
bsalomon@google.com123ac1d2013-03-28 19:18:12 +000042
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +000043 /**
senorblancod0d37ca2015-04-02 04:54:56 -070044 * Creates an SkGpuDevice from a GrRenderTarget whose texture width/height is
45 * different than its actual width/height (e.g., approx-match scratch texture).
46 */
47 static SkGpuDevice* Create(GrRenderTarget* target, int width, int height,
48 const SkSurfaceProps*, unsigned flags = 0);
49
50 /**
bsalomonafe30052015-01-16 07:32:33 -080051 * New device that will create an offscreen renderTarget based on the ImageInfo and
52 * sampleCount. The Budgeted param controls whether the device's backing store counts against
53 * the resource cache budget. On failure, returns NULL.
commit-bot@chromium.org15a14052014-02-16 00:59:25 +000054 */
bsalomonafe30052015-01-16 07:32:33 -080055 static SkGpuDevice* Create(GrContext*, SkSurface::Budgeted, const SkImageInfo&,
56 int sampleCount, const SkSurfaceProps*, unsigned flags = 0);
commit-bot@chromium.org15a14052014-02-16 00:59:25 +000057
reed@google.comac10a2d2010-12-22 21:39:39 +000058 virtual ~SkGpuDevice();
reed@google.com7b201d22011-01-11 18:59:23 +000059
reedb2db8982014-11-13 12:41:02 -080060 SkGpuDevice* cloneDevice(const SkSurfaceProps& props) {
reed76033be2015-03-14 10:54:31 -070061 SkBaseDevice* dev = this->onCreateDevice(CreateInfo(this->imageInfo(), kPossible_TileUsage,
62 props.pixelGeometry()),
63 NULL);
reedb2db8982014-11-13 12:41:02 -080064 return static_cast<SkGpuDevice*>(dev);
65 }
66
joshualitt5f5a8d72015-02-25 14:09:45 -080067 GrContext* context() const { return fContext; }
reed@google.comac10a2d2010-12-22 21:39:39 +000068
reed8eddfb52014-12-04 07:50:14 -080069 // set all pixels to 0
70 void clearAll();
71
kkinnunenabcfab42015-02-22 22:53:44 -080072 void replaceRenderTarget(bool shouldRetainContent);
73
mtklein36352bf2015-03-25 18:17:31 -070074 GrRenderTarget* accessRenderTarget() override;
reed@google.comac10a2d2010-12-22 21:39:39 +000075
mtklein36352bf2015-03-25 18:17:31 -070076 SkImageInfo imageInfo() const override {
senorblancod0d37ca2015-04-02 04:54:56 -070077 return fLegacyBitmap.info();
robertphillips@google.com07f81a52013-09-17 12:26:23 +000078 }
reed@google.comac10a2d2010-12-22 21:39:39 +000079
bsalomonafe30052015-01-16 07:32:33 -080080 const SkSurfaceProps& surfaceProps() const { return fSurfaceProps; }
81
mtklein36352bf2015-03-25 18:17:31 -070082 void drawPaint(const SkDraw&, const SkPaint& paint) override;
reed@google.comac10a2d2010-12-22 21:39:39 +000083 virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, size_t count,
mtklein36352bf2015-03-25 18:17:31 -070084 const SkPoint[], const SkPaint& paint) override;
reed@google.comac10a2d2010-12-22 21:39:39 +000085 virtual void drawRect(const SkDraw&, const SkRect& r,
mtklein36352bf2015-03-25 18:17:31 -070086 const SkPaint& paint) override;
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +000087 virtual void drawRRect(const SkDraw&, const SkRRect& r,
mtklein36352bf2015-03-25 18:17:31 -070088 const SkPaint& paint) override;
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +000089 virtual void drawDRRect(const SkDraw& draw, const SkRRect& outer,
mtklein36352bf2015-03-25 18:17:31 -070090 const SkRRect& inner, const SkPaint& paint) override;
jvanverth@google.com46d3d392013-01-22 13:34:01 +000091 virtual void drawOval(const SkDraw&, const SkRect& oval,
mtklein36352bf2015-03-25 18:17:31 -070092 const SkPaint& paint) override;
reed@google.comac10a2d2010-12-22 21:39:39 +000093 virtual void drawPath(const SkDraw&, const SkPath& path,
94 const SkPaint& paint, const SkMatrix* prePathMatrix,
mtklein36352bf2015-03-25 18:17:31 -070095 bool pathIsMutable) override;
reed@google.comac10a2d2010-12-22 21:39:39 +000096 virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap,
mtklein36352bf2015-03-25 18:17:31 -070097 const SkMatrix&, const SkPaint&) override;
reed@google.com33535f32012-09-25 15:37:50 +000098 virtual void drawBitmapRect(const SkDraw&, const SkBitmap&,
99 const SkRect* srcOrNull, const SkRect& dst,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000100 const SkPaint& paint,
mtklein36352bf2015-03-25 18:17:31 -0700101 SkCanvas::DrawBitmapRectFlags flags) override;
reed@google.comac10a2d2010-12-22 21:39:39 +0000102 virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap,
mtklein36352bf2015-03-25 18:17:31 -0700103 int x, int y, const SkPaint& paint) override;
reed@google.comac10a2d2010-12-22 21:39:39 +0000104 virtual void drawText(const SkDraw&, const void* text, size_t len,
mtklein36352bf2015-03-25 18:17:31 -0700105 SkScalar x, SkScalar y, const SkPaint&) override;
reed@google.comac10a2d2010-12-22 21:39:39 +0000106 virtual void drawPosText(const SkDraw&, const void* text, size_t len,
fmalita05c4a432014-09-29 06:29:53 -0700107 const SkScalar pos[], int scalarsPerPos,
mtklein36352bf2015-03-25 18:17:31 -0700108 const SkPoint& offset, const SkPaint&) override;
joshualitt9c328182015-03-23 08:13:04 -0700109 virtual void drawTextBlob(const SkDraw&, const SkTextBlob*, SkScalar x, SkScalar y,
mtklein36352bf2015-03-25 18:17:31 -0700110 const SkPaint& paint, SkDrawFilter* drawFilter) override;
reed@google.comac10a2d2010-12-22 21:39:39 +0000111 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount,
112 const SkPoint verts[], const SkPoint texs[],
113 const SkColor colors[], SkXfermode* xmode,
114 const uint16_t indices[], int indexCount,
mtklein36352bf2015-03-25 18:17:31 -0700115 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,
120 const SkPaint&) override;
reed@google.com7b201d22011-01-11 18:59:23 +0000121
mtklein36352bf2015-03-25 18:17:31 -0700122 void flush() override;
reed@google.com7b201d22011-01-11 18:59:23 +0000123
mtklein36352bf2015-03-25 18:17:31 -0700124 void onAttachToCanvas(SkCanvas* canvas) override;
125 void onDetachFromCanvas() override;
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000126
mtklein36352bf2015-03-25 18:17:31 -0700127 const SkBitmap& onAccessBitmap() override;
senorblanco@chromium.orgb7b7eb32014-03-19 18:24:04 +0000128
mtklein36352bf2015-03-25 18:17:31 -0700129 bool canHandleImageFilter(const SkImageFilter*) override;
senorblanco@chromium.org4cb543d2014-03-14 15:44:01 +0000130 virtual bool filterImage(const SkImageFilter*, const SkBitmap&,
131 const SkImageFilter::Context&,
mtklein36352bf2015-03-25 18:17:31 -0700132 SkBitmap*, SkIPoint*) override;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000133
senorblancod0d37ca2015-04-02 04:54:56 -0700134 bool filterTexture(GrContext*, GrTexture*, int width, int height, const SkImageFilter*,
robertphillips7b9e8a42014-12-11 08:20:31 -0800135 const SkImageFilter::Context&,
136 SkBitmap* result, SkIPoint* offset);
137
reed@google.comac10a2d2010-12-22 21:39:39 +0000138protected:
mtklein36352bf2015-03-25 18:17:31 -0700139 bool onReadPixels(const SkImageInfo&, void*, size_t, int, int) override;
140 bool onWritePixels(const SkImageInfo&, const void*, size_t, int, int) override;
141 bool onShouldDisableLCD(const SkPaint&) const override;
bsalomon@google.comc6980972011-11-02 19:57:21 +0000142
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000143 /** PRIVATE / EXPERIMENTAL -- do not call */
reedd5fa1a42014-08-09 11:08:05 -0700144 virtual bool EXPERIMENTAL_drawPicture(SkCanvas* canvas, const SkPicture* picture,
mtklein36352bf2015-03-25 18:17:31 -0700145 const SkMatrix*, const SkPaint*) override;
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000146
reed@google.comac10a2d2010-12-22 21:39:39 +0000147private:
joshualitt44701df2015-02-23 14:44:57 -0800148 GrContext* fContext;
149 GrSkDrawProcs* fDrawProcs;
150 SkAutoTUnref<const SkClipStack> fClipStack;
151 SkIPoint fClipOrigin;
joshualitt570d2f82015-02-25 13:19:48 -0800152 GrClip fClip;
joshualitt44701df2015-02-23 14:44:57 -0800153 GrTextContext* fTextContext;
robertphillipsea461502015-05-26 11:38:03 -0700154 SkAutoTUnref<GrDrawContext> fDrawContext;
joshualitt44701df2015-02-23 14:44:57 -0800155 SkSurfaceProps fSurfaceProps;
156 GrRenderTarget* fRenderTarget;
reed89443ab2014-06-27 11:34:19 -0700157 // remove when our clients don't rely on accessBitmap()
joshualitt44701df2015-02-23 14:44:57 -0800158 SkBitmap fLegacyBitmap;
159 bool fNeedClear;
reed89443ab2014-06-27 11:34:19 -0700160
senorblancod0d37ca2015-04-02 04:54:56 -0700161 SkGpuDevice(GrRenderTarget*, int width, int height, const SkSurfaceProps*, unsigned flags);
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000162
mtklein36352bf2015-03-25 18:17:31 -0700163 SkBaseDevice* onCreateDevice(const CreateInfo&, const SkPaint*) override;
bsalomon@google.come97f0852011-06-17 13:10:25 +0000164
mtklein36352bf2015-03-25 18:17:31 -0700165 SkSurface* newSurface(const SkImageInfo&, const SkSurfaceProps&) override;
reed@google.com76f10a32014-02-05 15:32:21 +0000166
mtklein36352bf2015-03-25 18:17:31 -0700167 SkImageFilter::Cache* getImageFilterCache() override;
reed841010f2014-09-10 07:23:32 -0700168
mtklein36352bf2015-03-25 18:17:31 -0700169 bool forceConservativeRasterClip() const override { return true; }
senorblanco55b6d8b2014-07-30 11:26:46 -0700170
joshualitt5531d512014-12-17 15:50:11 -0800171 // sets the render target and clip on context
172 void prepareDraw(const SkDraw&);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000173
174 /**
175 * Implementation for both drawBitmap and drawBitmapRect.
176 */
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +0000177 void drawBitmapCommon(const SkDraw&,
robertphillips@google.combac6b052012-09-28 18:06:49 +0000178 const SkBitmap& bitmap,
179 const SkRect* srcRectPtr,
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +0000180 const SkSize* dstSizePtr, // ignored iff srcRectPtr == NULL
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000181 const SkPaint&,
182 SkCanvas::DrawBitmapRectFlags flags);
reed@google.comac10a2d2010-12-22 21:39:39 +0000183
bsalomon@google.comf4a9c822012-03-16 14:02:46 +0000184 /**
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000185 * Helper functions called by drawBitmapCommon. By the time these are called the SkDraw's
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000186 * matrix, clip, and the device's render target has already been set on GrContext.
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000187 */
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000188
189 // The tileSize and clippedSrcRect will be valid only if true is returned.
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000190 bool shouldTileBitmap(const SkBitmap& bitmap,
joshualitt5531d512014-12-17 15:50:11 -0800191 const SkMatrix& viewMatrix,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000192 const GrTextureParams& sampler,
bsalomon@google.comaf562b42013-10-24 17:52:07 +0000193 const SkRect* srcRectPtr,
194 int maxTileSize,
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000195 int* tileSize,
196 SkIRect* clippedSrcRect) const;
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000197 void internalDrawBitmap(const SkBitmap&,
joshualitt5531d512014-12-17 15:50:11 -0800198 const SkMatrix& viewMatrix,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000199 const SkRect&,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000200 const GrTextureParams& params,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000201 const SkPaint& paint,
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000202 SkCanvas::DrawBitmapRectFlags flags,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000203 bool bicubic,
204 bool needsTextureDomain);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000205 void drawTiledBitmap(const SkBitmap& bitmap,
joshualitt5531d512014-12-17 15:50:11 -0800206 const SkMatrix& viewMatrix,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000207 const SkRect& srcRect,
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000208 const SkIRect& clippedSrcRect,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000209 const GrTextureParams& params,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000210 const SkPaint& paint,
bsalomon@google.comaf562b42013-10-24 17:52:07 +0000211 SkCanvas::DrawBitmapRectFlags flags,
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000212 int tileSize,
213 bool bicubic);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000214
joshualitt5efb8b82015-03-18 11:49:12 -0700215 void internalDrawPath(const SkPath& origSrcPath, const SkPaint& paint,
216 const SkMatrix& origViewMatrix, const SkMatrix* prePathMatrix,
217 const SkIRect& clipBounds, bool pathIsMutable);
218
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000219 bool drawDashLine(const SkPoint pts[2], const SkPaint& paint);
220
kkinnunenabcfab42015-02-22 22:53:44 -0800221 static GrRenderTarget* CreateRenderTarget(GrContext*, SkSurface::Budgeted, const SkImageInfo&,
222 int sampleCount);
223
joshualittdbd35932015-04-02 09:19:04 -0700224 friend class GrAtlasTextContext;
joshualitt6e8cd962015-03-20 10:30:14 -0700225 friend class GrTextContext;
reed89443ab2014-06-27 11:34:19 -0700226 typedef SkBaseDevice INHERITED;
reed@google.comac10a2d2010-12-22 21:39:39 +0000227};
228
229#endif