blob: 41b53b12138327d4f5835c28869444e7cfcabfb4 [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"
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 kCached_Flag = 1 << 1, //!< Surface is cached and needs to be unlocked when released
commit-bot@chromium.org6fcd1ef2014-05-02 12:39:41 +000037 kDFFonts_Flag = 1 << 2, //!< Surface should render fonts 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 */
reed3716fd02014-09-21 09:39:55 -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 */
reed3716fd02014-09-21 09:39:55 -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
reed@google.comac10a2d2010-12-22 21:39:39 +000059 GrContext* context() const { return fContext; }
60
commit-bot@chromium.orgb8d00db2013-06-26 19:18:23 +000061 virtual GrRenderTarget* accessRenderTarget() SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000062
reedf252f642014-06-14 04:24:56 -070063 virtual SkImageInfo imageInfo() const SK_OVERRIDE {
64 return fRenderTarget ? fRenderTarget->info() : SkImageInfo::MakeUnknown();
robertphillips@google.com07f81a52013-09-17 12:26:23 +000065 }
reed@google.comac10a2d2010-12-22 21:39:39 +000066
reed@google.com75d939b2011-12-07 15:07:23 +000067 virtual void clear(SkColor color) SK_OVERRIDE;
reed@google.com75d939b2011-12-07 15:07:23 +000068 virtual void drawPaint(const SkDraw&, const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000069 virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, size_t count,
reed@google.com75d939b2011-12-07 15:07:23 +000070 const SkPoint[], const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000071 virtual void drawRect(const SkDraw&, const SkRect& r,
reed@google.com75d939b2011-12-07 15:07:23 +000072 const SkPaint& paint) SK_OVERRIDE;
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +000073 virtual void drawRRect(const SkDraw&, const SkRRect& r,
74 const SkPaint& paint) SK_OVERRIDE;
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +000075 virtual void drawDRRect(const SkDraw& draw, const SkRRect& outer,
76 const SkRRect& inner, const SkPaint& paint) SK_OVERRIDE;
jvanverth@google.com46d3d392013-01-22 13:34:01 +000077 virtual void drawOval(const SkDraw&, const SkRect& oval,
78 const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000079 virtual void drawPath(const SkDraw&, const SkPath& path,
80 const SkPaint& paint, const SkMatrix* prePathMatrix,
reed@google.com75d939b2011-12-07 15:07:23 +000081 bool pathIsMutable) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000082 virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap,
reed@google.com75d939b2011-12-07 15:07:23 +000083 const SkMatrix&, const SkPaint&) SK_OVERRIDE;
reed@google.com33535f32012-09-25 15:37:50 +000084 virtual void drawBitmapRect(const SkDraw&, const SkBitmap&,
85 const SkRect* srcOrNull, const SkRect& dst,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +000086 const SkPaint& paint,
87 SkCanvas::DrawBitmapRectFlags flags) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000088 virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap,
89 int x, int y, const SkPaint& paint);
90 virtual void drawText(const SkDraw&, const void* text, size_t len,
reed@google.com75d939b2011-12-07 15:07:23 +000091 SkScalar x, SkScalar y, const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000092 virtual void drawPosText(const SkDraw&, const void* text, size_t len,
93 const SkScalar pos[], SkScalar constY,
reed@google.com75d939b2011-12-07 15:07:23 +000094 int scalarsPerPos, const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000095 virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len,
96 const SkPath& path, const SkMatrix* matrix,
reed@google.com75d939b2011-12-07 15:07:23 +000097 const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000098 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount,
99 const SkPoint verts[], const SkPoint texs[],
100 const SkColor colors[], SkXfermode* xmode,
101 const uint16_t indices[], int indexCount,
reed@google.com75d939b2011-12-07 15:07:23 +0000102 const SkPaint&) SK_OVERRIDE;
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000103 virtual void drawDevice(const SkDraw&, SkBaseDevice*, int x, int y,
reed@google.com75d939b2011-12-07 15:07:23 +0000104 const SkPaint&) SK_OVERRIDE;
105 virtual bool filterTextFlags(const SkPaint&, TextFlags*) SK_OVERRIDE;
reed@google.com7b201d22011-01-11 18:59:23 +0000106
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000107 virtual void flush() SK_OVERRIDE;
reed@google.com7b201d22011-01-11 18:59:23 +0000108
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000109 virtual void onAttachToCanvas(SkCanvas* canvas) SK_OVERRIDE;
110 virtual void onDetachFromCanvas() SK_OVERRIDE;
111
senorblanco@chromium.orgb7b7eb32014-03-19 18:24:04 +0000112 virtual const SkBitmap& onAccessBitmap() SK_OVERRIDE;
113
commit-bot@chromium.orgae761f72014-02-05 22:32:02 +0000114 virtual bool canHandleImageFilter(const SkImageFilter*) SK_OVERRIDE;
senorblanco@chromium.org4cb543d2014-03-14 15:44:01 +0000115 virtual bool filterImage(const SkImageFilter*, const SkBitmap&,
116 const SkImageFilter::Context&,
reed@google.com8926b162012-03-23 15:36:36 +0000117 SkBitmap*, SkIPoint*) SK_OVERRIDE;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000118
bsalomon@google.com84405e02012-03-05 19:57:21 +0000119 class SkAutoCachedTexture; // used internally
120
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000121
reed@google.comac10a2d2010-12-22 21:39:39 +0000122protected:
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000123 virtual bool onReadPixels(const SkImageInfo&, void*, size_t, int, int) SK_OVERRIDE;
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000124 virtual bool onWritePixels(const SkImageInfo&, const void*, size_t, int, int) SK_OVERRIDE;
bsalomon@google.comc6980972011-11-02 19:57:21 +0000125
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000126 /** PRIVATE / EXPERIMENTAL -- do not call */
robertphillips9b14f262014-06-04 05:40:44 -0700127 virtual void EXPERIMENTAL_optimize(const SkPicture* picture) SK_OVERRIDE;
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000128 /** PRIVATE / EXPERIMENTAL -- do not call */
reedd5fa1a42014-08-09 11:08:05 -0700129 virtual bool EXPERIMENTAL_drawPicture(SkCanvas* canvas, const SkPicture* picture,
130 const SkMatrix*, const SkPaint*) SK_OVERRIDE;
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000131
reed@google.comac10a2d2010-12-22 21:39:39 +0000132private:
133 GrContext* fContext;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000134
reed@google.comac10a2d2010-12-22 21:39:39 +0000135 GrSkDrawProcs* fDrawProcs;
136
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000137 GrClipData fClipData;
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000138
commit-bot@chromium.orgcbbc4812014-01-30 22:05:47 +0000139 GrTextContext* fMainTextContext;
140 GrTextContext* fFallbackTextContext;
commit-bot@chromium.orgcc40f062014-01-24 14:38:27 +0000141
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000142 // state for our render-target
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000143 GrRenderTarget* fRenderTarget;
144 bool fNeedClear;
reed@google.com7b201d22011-01-11 18:59:23 +0000145
reed89443ab2014-06-27 11:34:19 -0700146 // remove when our clients don't rely on accessBitmap()
147 SkBitmap fLegacyBitmap;
148
reed3716fd02014-09-21 09:39:55 -0700149 SkGpuDevice(GrSurface*, const SkSurfaceProps&, unsigned flags = 0);
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000150
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000151 virtual SkBaseDevice* onCreateDevice(const SkImageInfo&, Usage) SK_OVERRIDE;
bsalomon@google.come97f0852011-06-17 13:10:25 +0000152
reed3716fd02014-09-21 09:39:55 -0700153 virtual SkSurface* newSurface(const SkImageInfo&, const SkSurfaceProps&) SK_OVERRIDE;
reed@google.com76f10a32014-02-05 15:32:21 +0000154
senorblancobe129b22014-08-08 07:14:35 -0700155 virtual SkImageFilter::Cache* getImageFilterCache() SK_OVERRIDE;
reed841010f2014-09-10 07:23:32 -0700156
157 // temporarily change the return to false, until we understand the issues with filters and persp
reed5d9ab282014-09-19 13:04:17 -0700158 virtual bool forceConservativeRasterClip() const SK_OVERRIDE { return true; }
senorblanco55b6d8b2014-07-30 11:26:46 -0700159
bsalomon@google.coma99226e2012-10-12 15:01:38 +0000160 // sets the render target, clip, and matrix on GrContext. Use forceIdenity to override
161 // SkDraw's matrix and draw in device coords.
162 void prepareDraw(const SkDraw&, bool forceIdentity);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000163
164 /**
165 * Implementation for both drawBitmap and drawBitmapRect.
166 */
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +0000167 void drawBitmapCommon(const SkDraw&,
robertphillips@google.combac6b052012-09-28 18:06:49 +0000168 const SkBitmap& bitmap,
169 const SkRect* srcRectPtr,
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +0000170 const SkSize* dstSizePtr, // ignored iff srcRectPtr == NULL
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000171 const SkPaint&,
172 SkCanvas::DrawBitmapRectFlags flags);
reed@google.comac10a2d2010-12-22 21:39:39 +0000173
bsalomon@google.comf4a9c822012-03-16 14:02:46 +0000174 /**
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000175 * Helper functions called by drawBitmapCommon. By the time these are called the SkDraw's
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000176 * matrix, clip, and the device's render target has already been set on GrContext.
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000177 */
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000178
179 // The tileSize and clippedSrcRect will be valid only if true is returned.
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000180 bool shouldTileBitmap(const SkBitmap& bitmap,
181 const GrTextureParams& sampler,
bsalomon@google.comaf562b42013-10-24 17:52:07 +0000182 const SkRect* srcRectPtr,
183 int maxTileSize,
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000184 int* tileSize,
185 SkIRect* clippedSrcRect) const;
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000186 void internalDrawBitmap(const SkBitmap&,
187 const SkRect&,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000188 const GrTextureParams& params,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000189 const SkPaint& paint,
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000190 SkCanvas::DrawBitmapRectFlags flags,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000191 bool bicubic,
192 bool needsTextureDomain);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000193 void drawTiledBitmap(const SkBitmap& bitmap,
194 const SkRect& srcRect,
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000195 const SkIRect& clippedSrcRect,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000196 const GrTextureParams& params,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000197 const SkPaint& paint,
bsalomon@google.comaf562b42013-10-24 17:52:07 +0000198 SkCanvas::DrawBitmapRectFlags flags,
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000199 int tileSize,
200 bool bicubic);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000201
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000202 bool drawDashLine(const SkPoint pts[2], const SkPaint& paint);
203
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000204 static SkPicture::AccelData::Key ComputeAccelDataKey();
205
reed89443ab2014-06-27 11:34:19 -0700206 typedef SkBaseDevice INHERITED;
reed@google.comac10a2d2010-12-22 21:39:39 +0000207};
208
209#endif