blob: 56dad1b475f3c57c23e6b392b2236693e7c17a23 [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
9
epoger@google.comec3ed6a2011-07-28 14:26:00 +000010
reed@google.comac10a2d2010-12-22 21:39:39 +000011#ifndef SkGpuDevice_DEFINED
12#define SkGpuDevice_DEFINED
13
14#include "SkGr.h"
reed@google.comaf951c92011-06-16 19:10:39 +000015#include "SkBitmap.h"
reed89443ab2014-06-27 11:34:19 -070016#include "SkDevice.h"
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +000017#include "SkPicture.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000018#include "SkRegion.h"
bsalomon@google.com50398bf2011-07-26 20:45:30 +000019#include "GrContext.h"
bsalomonafbf2d62014-09-30 12:18:44 -070020#include "GrSurfacePriv.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000021
22struct SkDrawProcs;
reed@google.comac10a2d2010-12-22 21:39:39 +000023struct GrSkDrawProcs;
reed@google.comac10a2d2010-12-22 21:39:39 +000024
robertphillips64bf7672014-08-21 13:07:35 -070025class GrAccelData;
26struct GrCachedLayer;
commit-bot@chromium.orgcbbc4812014-01-30 22:05:47 +000027class GrTextContext;
commit-bot@chromium.orgddf2bfb2014-01-30 16:41:23 +000028
reed@google.comac10a2d2010-12-22 21:39:39 +000029/**
reed89443ab2014-06-27 11:34:19 -070030 * Subclass of SkBaseDevice, which directs all drawing to the GrGpu owned by the
reed@google.comac10a2d2010-12-22 21:39:39 +000031 * canvas.
32 */
reed89443ab2014-06-27 11:34:19 -070033class SK_API SkGpuDevice : public SkBaseDevice {
reed@google.comac10a2d2010-12-22 21:39:39 +000034public:
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +000035 enum Flags {
skia.committer@gmail.com99e5b522014-03-21 03:02:42 +000036 kNeedClear_Flag = 1 << 0, //!< Surface requires an initial clear
jvanverth4736e142014-11-07 07:12:46 -080037 kDFText_Flag = 1 << 1, //!< Surface should render text using signed distance fields
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +000038 };
bsalomon@google.com123ac1d2013-03-28 19:18:12 +000039
40 /**
41 * Creates an SkGpuDevice from a GrSurface. This will fail if the surface is not a render
skia.committer@gmail.com99e5b522014-03-21 03:02:42 +000042 * target. The caller owns a ref on the returned device. If the surface is cached,
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +000043 * the kCached_Flag should be specified to make the device responsible for unlocking
44 * the surface when it is released.
bsalomon@google.com123ac1d2013-03-28 19:18:12 +000045 */
reed4a8126e2014-09-22 07:29:03 -070046 static SkGpuDevice* Create(GrSurface* surface, const SkSurfaceProps&, unsigned flags = 0);
bsalomon@google.com123ac1d2013-03-28 19:18:12 +000047
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +000048 /**
reed@google.comaf951c92011-06-16 19:10:39 +000049 * New device that will create an offscreen renderTarget based on the
commit-bot@chromium.org15a14052014-02-16 00:59:25 +000050 * ImageInfo and sampleCount. The device's storage will not
51 * count against the GrContext's texture cache budget. The device's pixels
52 * will be uninitialized. On failure, returns NULL.
53 */
reed4a8126e2014-09-22 07:29:03 -070054 static SkGpuDevice* Create(GrContext*, const SkImageInfo&, const SkSurfaceProps&,
55 int sampleCount);
commit-bot@chromium.org15a14052014-02-16 00:59:25 +000056
reed@google.comac10a2d2010-12-22 21:39:39 +000057 virtual ~SkGpuDevice();
reed@google.com7b201d22011-01-11 18:59:23 +000058
reedb2db8982014-11-13 12:41:02 -080059 SkGpuDevice* cloneDevice(const SkSurfaceProps& props) {
60 SkBaseDevice* dev = this->onCreateCompatibleDevice(CreateInfo(this->imageInfo(),
61 kGeneral_Usage,
62 props.pixelGeometry()));
63 return static_cast<SkGpuDevice*>(dev);
64 }
65
reed@google.comac10a2d2010-12-22 21:39:39 +000066 GrContext* context() const { return fContext; }
67
reed8eddfb52014-12-04 07:50:14 -080068 // set all pixels to 0
69 void clearAll();
70
mtklein72c9faa2015-01-09 10:06:39 -080071 GrRenderTarget* accessRenderTarget() SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000072
mtklein72c9faa2015-01-09 10:06:39 -080073 SkImageInfo imageInfo() const SK_OVERRIDE {
bsalomonafbf2d62014-09-30 12:18:44 -070074 return fRenderTarget ? fRenderTarget->surfacePriv().info() : SkImageInfo::MakeUnknown();
robertphillips@google.com07f81a52013-09-17 12:26:23 +000075 }
reed@google.comac10a2d2010-12-22 21:39:39 +000076
mtklein72c9faa2015-01-09 10:06:39 -080077 void drawPaint(const SkDraw&, const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000078 virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, size_t count,
reed@google.com75d939b2011-12-07 15:07:23 +000079 const SkPoint[], const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000080 virtual void drawRect(const SkDraw&, const SkRect& r,
reed@google.com75d939b2011-12-07 15:07:23 +000081 const SkPaint& paint) SK_OVERRIDE;
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +000082 virtual void drawRRect(const SkDraw&, const SkRRect& r,
83 const SkPaint& paint) SK_OVERRIDE;
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +000084 virtual void drawDRRect(const SkDraw& draw, const SkRRect& outer,
85 const SkRRect& inner, const SkPaint& paint) SK_OVERRIDE;
jvanverth@google.com46d3d392013-01-22 13:34:01 +000086 virtual void drawOval(const SkDraw&, const SkRect& oval,
87 const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000088 virtual void drawPath(const SkDraw&, const SkPath& path,
89 const SkPaint& paint, const SkMatrix* prePathMatrix,
reed@google.com75d939b2011-12-07 15:07:23 +000090 bool pathIsMutable) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000091 virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap,
reed@google.com75d939b2011-12-07 15:07:23 +000092 const SkMatrix&, const SkPaint&) SK_OVERRIDE;
reed@google.com33535f32012-09-25 15:37:50 +000093 virtual void drawBitmapRect(const SkDraw&, const SkBitmap&,
94 const SkRect* srcOrNull, const SkRect& dst,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +000095 const SkPaint& paint,
96 SkCanvas::DrawBitmapRectFlags flags) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000097 virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap,
tfarina912ed6e2014-12-14 15:20:10 -080098 int x, int y, const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000099 virtual void drawText(const SkDraw&, const void* text, size_t len,
reed@google.com75d939b2011-12-07 15:07:23 +0000100 SkScalar x, SkScalar y, const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +0000101 virtual void drawPosText(const SkDraw&, const void* text, size_t len,
fmalita05c4a432014-09-29 06:29:53 -0700102 const SkScalar pos[], int scalarsPerPos,
103 const SkPoint& offset, const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +0000104 virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len,
105 const SkPath& path, const SkMatrix* matrix,
reed@google.com75d939b2011-12-07 15:07:23 +0000106 const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +0000107 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount,
108 const SkPoint verts[], const SkPoint texs[],
109 const SkColor colors[], SkXfermode* xmode,
110 const uint16_t indices[], int indexCount,
reed@google.com75d939b2011-12-07 15:07:23 +0000111 const SkPaint&) SK_OVERRIDE;
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000112 virtual void drawDevice(const SkDraw&, SkBaseDevice*, int x, int y,
reed@google.com75d939b2011-12-07 15:07:23 +0000113 const SkPaint&) SK_OVERRIDE;
reed@google.com7b201d22011-01-11 18:59:23 +0000114
mtklein72c9faa2015-01-09 10:06:39 -0800115 void flush() SK_OVERRIDE;
reed@google.com7b201d22011-01-11 18:59:23 +0000116
mtklein72c9faa2015-01-09 10:06:39 -0800117 void onAttachToCanvas(SkCanvas* canvas) SK_OVERRIDE;
118 void onDetachFromCanvas() SK_OVERRIDE;
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000119
mtklein72c9faa2015-01-09 10:06:39 -0800120 const SkBitmap& onAccessBitmap() SK_OVERRIDE;
senorblanco@chromium.orgb7b7eb32014-03-19 18:24:04 +0000121
mtklein72c9faa2015-01-09 10:06:39 -0800122 bool canHandleImageFilter(const SkImageFilter*) SK_OVERRIDE;
senorblanco@chromium.org4cb543d2014-03-14 15:44:01 +0000123 virtual bool filterImage(const SkImageFilter*, const SkBitmap&,
124 const SkImageFilter::Context&,
reed@google.com8926b162012-03-23 15:36:36 +0000125 SkBitmap*, SkIPoint*) SK_OVERRIDE;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000126
robertphillips7b9e8a42014-12-11 08:20:31 -0800127 bool filterTexture(GrContext*, GrTexture*, const SkImageFilter*,
128 const SkImageFilter::Context&,
129 SkBitmap* result, SkIPoint* offset);
130
reed@google.comac10a2d2010-12-22 21:39:39 +0000131protected:
mtklein72c9faa2015-01-09 10:06:39 -0800132 bool onReadPixels(const SkImageInfo&, void*, size_t, int, int) SK_OVERRIDE;
133 bool onWritePixels(const SkImageInfo&, const void*, size_t, int, int) SK_OVERRIDE;
reedb2db8982014-11-13 12:41:02 -0800134 bool onShouldDisableLCD(const SkPaint&) const SK_OVERRIDE;
bsalomon@google.comc6980972011-11-02 19:57:21 +0000135
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000136 /** PRIVATE / EXPERIMENTAL -- do not call */
reedd5fa1a42014-08-09 11:08:05 -0700137 virtual bool EXPERIMENTAL_drawPicture(SkCanvas* canvas, const SkPicture* picture,
138 const SkMatrix*, const SkPaint*) SK_OVERRIDE;
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000139
reed@google.comac10a2d2010-12-22 21:39:39 +0000140private:
141 GrContext* fContext;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000142
reed@google.comac10a2d2010-12-22 21:39:39 +0000143 GrSkDrawProcs* fDrawProcs;
144
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000145 GrClipData fClipData;
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000146
jvanverth8c27a182014-10-14 08:45:50 -0700147 GrTextContext* fTextContext;
commit-bot@chromium.orgcc40f062014-01-24 14:38:27 +0000148
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000149 // state for our render-target
jvanverth4736e142014-11-07 07:12:46 -0800150 GrRenderTarget* fRenderTarget;
151 uint32_t fFlags;
reed@google.com7b201d22011-01-11 18:59:23 +0000152
reed89443ab2014-06-27 11:34:19 -0700153 // remove when our clients don't rely on accessBitmap()
154 SkBitmap fLegacyBitmap;
155
reed4a8126e2014-09-22 07:29:03 -0700156 SkGpuDevice(GrSurface*, const SkSurfaceProps&, unsigned flags = 0);
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000157
mtklein72c9faa2015-01-09 10:06:39 -0800158 SkBaseDevice* onCreateCompatibleDevice(const CreateInfo&) SK_OVERRIDE;
bsalomon@google.come97f0852011-06-17 13:10:25 +0000159
mtklein72c9faa2015-01-09 10:06:39 -0800160 SkSurface* newSurface(const SkImageInfo&, const SkSurfaceProps&) SK_OVERRIDE;
reed@google.com76f10a32014-02-05 15:32:21 +0000161
mtklein72c9faa2015-01-09 10:06:39 -0800162 SkImageFilter::Cache* getImageFilterCache() SK_OVERRIDE;
reed841010f2014-09-10 07:23:32 -0700163
mtklein72c9faa2015-01-09 10:06:39 -0800164 bool forceConservativeRasterClip() const SK_OVERRIDE { return true; }
senorblanco55b6d8b2014-07-30 11:26:46 -0700165
joshualitt5531d512014-12-17 15:50:11 -0800166 // sets the render target and clip on context
167 void prepareDraw(const SkDraw&);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000168
169 /**
170 * Implementation for both drawBitmap and drawBitmapRect.
171 */
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +0000172 void drawBitmapCommon(const SkDraw&,
robertphillips@google.combac6b052012-09-28 18:06:49 +0000173 const SkBitmap& bitmap,
174 const SkRect* srcRectPtr,
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +0000175 const SkSize* dstSizePtr, // ignored iff srcRectPtr == NULL
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000176 const SkPaint&,
177 SkCanvas::DrawBitmapRectFlags flags);
reed@google.comac10a2d2010-12-22 21:39:39 +0000178
bsalomon@google.comf4a9c822012-03-16 14:02:46 +0000179 /**
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000180 * Helper functions called by drawBitmapCommon. By the time these are called the SkDraw's
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000181 * matrix, clip, and the device's render target has already been set on GrContext.
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000182 */
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000183
184 // The tileSize and clippedSrcRect will be valid only if true is returned.
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000185 bool shouldTileBitmap(const SkBitmap& bitmap,
joshualitt5531d512014-12-17 15:50:11 -0800186 const SkMatrix& viewMatrix,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000187 const GrTextureParams& sampler,
bsalomon@google.comaf562b42013-10-24 17:52:07 +0000188 const SkRect* srcRectPtr,
189 int maxTileSize,
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000190 int* tileSize,
191 SkIRect* clippedSrcRect) const;
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000192 void internalDrawBitmap(const SkBitmap&,
joshualitt5531d512014-12-17 15:50:11 -0800193 const SkMatrix& viewMatrix,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000194 const SkRect&,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000195 const GrTextureParams& params,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000196 const SkPaint& paint,
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000197 SkCanvas::DrawBitmapRectFlags flags,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000198 bool bicubic,
199 bool needsTextureDomain);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000200 void drawTiledBitmap(const SkBitmap& bitmap,
joshualitt5531d512014-12-17 15:50:11 -0800201 const SkMatrix& viewMatrix,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000202 const SkRect& srcRect,
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000203 const SkIRect& clippedSrcRect,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000204 const GrTextureParams& params,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000205 const SkPaint& paint,
bsalomon@google.comaf562b42013-10-24 17:52:07 +0000206 SkCanvas::DrawBitmapRectFlags flags,
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000207 int tileSize,
208 bool bicubic);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000209
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000210 bool drawDashLine(const SkPoint pts[2], const SkPaint& paint);
211
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000212 static SkPicture::AccelData::Key ComputeAccelDataKey();
213
reed89443ab2014-06-27 11:34:19 -0700214 typedef SkBaseDevice INHERITED;
reed@google.comac10a2d2010-12-22 21:39:39 +0000215};
216
217#endif