blob: 285a73745cf94392e1abda6605b65d1f4bc99d1c [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
robertphillipsdbe60742014-09-30 06:54:17 -070037 kCached_Flag = 1 << 1, //!< Surface is cached and needs to be unlocked when released
38 kDFFonts_Flag = 1 << 2, //!< Surface should render fonts using signed distance fields
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +000039 };
bsalomon@google.com123ac1d2013-03-28 19:18:12 +000040
41 /**
42 * 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 +000043 * target. The caller owns a ref on the returned device. If the surface is cached,
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +000044 * the kCached_Flag should be specified to make the device responsible for unlocking
45 * the surface when it is released.
bsalomon@google.com123ac1d2013-03-28 19:18:12 +000046 */
reed4a8126e2014-09-22 07:29:03 -070047 static SkGpuDevice* Create(GrSurface* surface, const SkSurfaceProps&, unsigned flags = 0);
bsalomon@google.com123ac1d2013-03-28 19:18:12 +000048
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +000049 /**
reed@google.comaf951c92011-06-16 19:10:39 +000050 * New device that will create an offscreen renderTarget based on the
commit-bot@chromium.org15a14052014-02-16 00:59:25 +000051 * ImageInfo and sampleCount. The device's storage will not
52 * count against the GrContext's texture cache budget. The device's pixels
53 * will be uninitialized. On failure, returns NULL.
54 */
reed4a8126e2014-09-22 07:29:03 -070055 static SkGpuDevice* Create(GrContext*, const SkImageInfo&, const SkSurfaceProps&,
56 int sampleCount);
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
reed@google.comac10a2d2010-12-22 21:39:39 +000060 GrContext* context() const { return fContext; }
61
commit-bot@chromium.orgb8d00db2013-06-26 19:18:23 +000062 virtual GrRenderTarget* accessRenderTarget() SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000063
reedf252f642014-06-14 04:24:56 -070064 virtual SkImageInfo imageInfo() const SK_OVERRIDE {
bsalomonafbf2d62014-09-30 12:18:44 -070065 return fRenderTarget ? fRenderTarget->surfacePriv().info() : SkImageInfo::MakeUnknown();
robertphillips@google.com07f81a52013-09-17 12:26:23 +000066 }
reed@google.comac10a2d2010-12-22 21:39:39 +000067
reed@google.com75d939b2011-12-07 15:07:23 +000068 virtual void clear(SkColor color) SK_OVERRIDE;
reed@google.com75d939b2011-12-07 15:07:23 +000069 virtual void drawPaint(const SkDraw&, const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000070 virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, size_t count,
reed@google.com75d939b2011-12-07 15:07:23 +000071 const SkPoint[], const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000072 virtual void drawRect(const SkDraw&, const SkRect& r,
reed@google.com75d939b2011-12-07 15:07:23 +000073 const SkPaint& paint) SK_OVERRIDE;
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +000074 virtual void drawRRect(const SkDraw&, const SkRRect& r,
75 const SkPaint& paint) SK_OVERRIDE;
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +000076 virtual void drawDRRect(const SkDraw& draw, const SkRRect& outer,
77 const SkRRect& inner, const SkPaint& paint) SK_OVERRIDE;
jvanverth@google.com46d3d392013-01-22 13:34:01 +000078 virtual void drawOval(const SkDraw&, const SkRect& oval,
79 const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000080 virtual void drawPath(const SkDraw&, const SkPath& path,
81 const SkPaint& paint, const SkMatrix* prePathMatrix,
reed@google.com75d939b2011-12-07 15:07:23 +000082 bool pathIsMutable) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000083 virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap,
reed@google.com75d939b2011-12-07 15:07:23 +000084 const SkMatrix&, const SkPaint&) SK_OVERRIDE;
reed@google.com33535f32012-09-25 15:37:50 +000085 virtual void drawBitmapRect(const SkDraw&, const SkBitmap&,
86 const SkRect* srcOrNull, const SkRect& dst,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +000087 const SkPaint& paint,
88 SkCanvas::DrawBitmapRectFlags flags) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000089 virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap,
90 int x, int y, const SkPaint& paint);
91 virtual void drawText(const SkDraw&, const void* text, size_t len,
reed@google.com75d939b2011-12-07 15:07:23 +000092 SkScalar x, SkScalar y, const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000093 virtual void drawPosText(const SkDraw&, const void* text, size_t len,
fmalita05c4a432014-09-29 06:29:53 -070094 const SkScalar pos[], int scalarsPerPos,
95 const SkPoint& offset, const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000096 virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len,
97 const SkPath& path, const SkMatrix* matrix,
reed@google.com75d939b2011-12-07 15:07:23 +000098 const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000099 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount,
100 const SkPoint verts[], const SkPoint texs[],
101 const SkColor colors[], SkXfermode* xmode,
102 const uint16_t indices[], int indexCount,
reed@google.com75d939b2011-12-07 15:07:23 +0000103 const SkPaint&) SK_OVERRIDE;
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000104 virtual void drawDevice(const SkDraw&, SkBaseDevice*, int x, int y,
reed@google.com75d939b2011-12-07 15:07:23 +0000105 const SkPaint&) SK_OVERRIDE;
106 virtual bool filterTextFlags(const SkPaint&, TextFlags*) SK_OVERRIDE;
reed@google.com7b201d22011-01-11 18:59:23 +0000107
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000108 virtual void flush() SK_OVERRIDE;
reed@google.com7b201d22011-01-11 18:59:23 +0000109
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000110 virtual void onAttachToCanvas(SkCanvas* canvas) SK_OVERRIDE;
111 virtual void onDetachFromCanvas() SK_OVERRIDE;
112
senorblanco@chromium.orgb7b7eb32014-03-19 18:24:04 +0000113 virtual const SkBitmap& onAccessBitmap() SK_OVERRIDE;
114
commit-bot@chromium.orgae761f72014-02-05 22:32:02 +0000115 virtual bool canHandleImageFilter(const SkImageFilter*) SK_OVERRIDE;
senorblanco@chromium.org4cb543d2014-03-14 15:44:01 +0000116 virtual bool filterImage(const SkImageFilter*, const SkBitmap&,
117 const SkImageFilter::Context&,
reed@google.com8926b162012-03-23 15:36:36 +0000118 SkBitmap*, SkIPoint*) SK_OVERRIDE;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000119
robertphillipsdbe60742014-09-30 06:54:17 -0700120 class SkAutoCachedTexture; // used internally
121
122
reed@google.comac10a2d2010-12-22 21:39:39 +0000123protected:
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000124 virtual bool onReadPixels(const SkImageInfo&, void*, size_t, int, int) SK_OVERRIDE;
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000125 virtual bool onWritePixels(const SkImageInfo&, const void*, size_t, int, int) SK_OVERRIDE;
bsalomon@google.comc6980972011-11-02 19:57:21 +0000126
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000127 /** PRIVATE / EXPERIMENTAL -- do not call */
robertphillips9b14f262014-06-04 05:40:44 -0700128 virtual void EXPERIMENTAL_optimize(const SkPicture* picture) SK_OVERRIDE;
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000129 /** PRIVATE / EXPERIMENTAL -- do not call */
reedd5fa1a42014-08-09 11:08:05 -0700130 virtual bool EXPERIMENTAL_drawPicture(SkCanvas* canvas, const SkPicture* picture,
131 const SkMatrix*, const SkPaint*) SK_OVERRIDE;
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000132
reed@google.comac10a2d2010-12-22 21:39:39 +0000133private:
134 GrContext* fContext;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000135
reed@google.comac10a2d2010-12-22 21:39:39 +0000136 GrSkDrawProcs* fDrawProcs;
137
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000138 GrClipData fClipData;
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000139
commit-bot@chromium.orgcbbc4812014-01-30 22:05:47 +0000140 GrTextContext* fMainTextContext;
141 GrTextContext* fFallbackTextContext;
commit-bot@chromium.orgcc40f062014-01-24 14:38:27 +0000142
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000143 // state for our render-target
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000144 GrRenderTarget* fRenderTarget;
145 bool fNeedClear;
reed@google.com7b201d22011-01-11 18:59:23 +0000146
reed89443ab2014-06-27 11:34:19 -0700147 // remove when our clients don't rely on accessBitmap()
148 SkBitmap fLegacyBitmap;
149
reed4a8126e2014-09-22 07:29:03 -0700150 SkGpuDevice(GrSurface*, const SkSurfaceProps&, unsigned flags = 0);
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000151
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000152 virtual SkBaseDevice* onCreateDevice(const SkImageInfo&, Usage) SK_OVERRIDE;
bsalomon@google.come97f0852011-06-17 13:10:25 +0000153
reed4a8126e2014-09-22 07:29:03 -0700154 virtual SkSurface* newSurface(const SkImageInfo&, const SkSurfaceProps&) SK_OVERRIDE;
reed@google.com76f10a32014-02-05 15:32:21 +0000155
senorblancobe129b22014-08-08 07:14:35 -0700156 virtual SkImageFilter::Cache* getImageFilterCache() SK_OVERRIDE;
reed841010f2014-09-10 07:23:32 -0700157
158 // temporarily change the return to false, until we understand the issues with filters and persp
reed5d9ab282014-09-19 13:04:17 -0700159 virtual bool forceConservativeRasterClip() const SK_OVERRIDE { return true; }
senorblanco55b6d8b2014-07-30 11:26:46 -0700160
bsalomon@google.coma99226e2012-10-12 15:01:38 +0000161 // sets the render target, clip, and matrix on GrContext. Use forceIdenity to override
162 // SkDraw's matrix and draw in device coords.
163 void prepareDraw(const SkDraw&, bool forceIdentity);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000164
165 /**
166 * Implementation for both drawBitmap and drawBitmapRect.
167 */
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +0000168 void drawBitmapCommon(const SkDraw&,
robertphillips@google.combac6b052012-09-28 18:06:49 +0000169 const SkBitmap& bitmap,
170 const SkRect* srcRectPtr,
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +0000171 const SkSize* dstSizePtr, // ignored iff srcRectPtr == NULL
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000172 const SkPaint&,
173 SkCanvas::DrawBitmapRectFlags flags);
reed@google.comac10a2d2010-12-22 21:39:39 +0000174
bsalomon@google.comf4a9c822012-03-16 14:02:46 +0000175 /**
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000176 * Helper functions called by drawBitmapCommon. By the time these are called the SkDraw's
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000177 * matrix, clip, and the device's render target has already been set on GrContext.
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000178 */
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000179
180 // The tileSize and clippedSrcRect will be valid only if true is returned.
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000181 bool shouldTileBitmap(const SkBitmap& bitmap,
182 const GrTextureParams& sampler,
bsalomon@google.comaf562b42013-10-24 17:52:07 +0000183 const SkRect* srcRectPtr,
184 int maxTileSize,
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000185 int* tileSize,
186 SkIRect* clippedSrcRect) const;
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000187 void internalDrawBitmap(const SkBitmap&,
188 const SkRect&,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000189 const GrTextureParams& params,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000190 const SkPaint& paint,
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000191 SkCanvas::DrawBitmapRectFlags flags,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000192 bool bicubic,
193 bool needsTextureDomain);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000194 void drawTiledBitmap(const SkBitmap& bitmap,
195 const SkRect& srcRect,
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000196 const SkIRect& clippedSrcRect,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000197 const GrTextureParams& params,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000198 const SkPaint& paint,
bsalomon@google.comaf562b42013-10-24 17:52:07 +0000199 SkCanvas::DrawBitmapRectFlags flags,
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000200 int tileSize,
201 bool bicubic);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000202
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000203 bool drawDashLine(const SkPoint pts[2], const SkPaint& paint);
204
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000205 static SkPicture::AccelData::Key ComputeAccelDataKey();
206
reed89443ab2014-06-27 11:34:19 -0700207 typedef SkBaseDevice INHERITED;
reed@google.comac10a2d2010-12-22 21:39:39 +0000208};
209
210#endif