blob: 96f3d84dec443a44b84117b73989d2bd3d8da4df [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 */
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +000046 static SkGpuDevice* Create(GrSurface* surface, 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 */
54 static SkGpuDevice* Create(GrContext*, const SkImageInfo&, int sampleCount);
55
reed@google.comac10a2d2010-12-22 21:39:39 +000056 virtual ~SkGpuDevice();
reed@google.com7b201d22011-01-11 18:59:23 +000057
reed@google.comac10a2d2010-12-22 21:39:39 +000058 GrContext* context() const { return fContext; }
59
commit-bot@chromium.orgb8d00db2013-06-26 19:18:23 +000060 virtual GrRenderTarget* accessRenderTarget() SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000061
reedf252f642014-06-14 04:24:56 -070062 virtual SkImageInfo imageInfo() const SK_OVERRIDE {
63 return fRenderTarget ? fRenderTarget->info() : SkImageInfo::MakeUnknown();
robertphillips@google.com07f81a52013-09-17 12:26:23 +000064 }
reed@google.comac10a2d2010-12-22 21:39:39 +000065
reed@google.com75d939b2011-12-07 15:07:23 +000066 virtual void clear(SkColor color) SK_OVERRIDE;
reed@google.com75d939b2011-12-07 15:07:23 +000067 virtual void drawPaint(const SkDraw&, const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000068 virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, size_t count,
reed@google.com75d939b2011-12-07 15:07:23 +000069 const SkPoint[], const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000070 virtual void drawRect(const SkDraw&, const SkRect& r,
reed@google.com75d939b2011-12-07 15:07:23 +000071 const SkPaint& paint) SK_OVERRIDE;
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +000072 virtual void drawRRect(const SkDraw&, const SkRRect& r,
73 const SkPaint& paint) SK_OVERRIDE;
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +000074 virtual void drawDRRect(const SkDraw& draw, const SkRRect& outer,
75 const SkRRect& inner, const SkPaint& paint) SK_OVERRIDE;
jvanverth@google.com46d3d392013-01-22 13:34:01 +000076 virtual void drawOval(const SkDraw&, const SkRect& oval,
77 const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000078 virtual void drawPath(const SkDraw&, const SkPath& path,
79 const SkPaint& paint, const SkMatrix* prePathMatrix,
reed@google.com75d939b2011-12-07 15:07:23 +000080 bool pathIsMutable) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000081 virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap,
reed@google.com75d939b2011-12-07 15:07:23 +000082 const SkMatrix&, const SkPaint&) SK_OVERRIDE;
reed@google.com33535f32012-09-25 15:37:50 +000083 virtual void drawBitmapRect(const SkDraw&, const SkBitmap&,
84 const SkRect* srcOrNull, const SkRect& dst,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +000085 const SkPaint& paint,
86 SkCanvas::DrawBitmapRectFlags flags) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000087 virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap,
88 int x, int y, const SkPaint& paint);
89 virtual void drawText(const SkDraw&, const void* text, size_t len,
reed@google.com75d939b2011-12-07 15:07:23 +000090 SkScalar x, SkScalar y, const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000091 virtual void drawPosText(const SkDraw&, const void* text, size_t len,
92 const SkScalar pos[], SkScalar constY,
reed@google.com75d939b2011-12-07 15:07:23 +000093 int scalarsPerPos, const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000094 virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len,
95 const SkPath& path, const SkMatrix* matrix,
reed@google.com75d939b2011-12-07 15:07:23 +000096 const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000097 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount,
98 const SkPoint verts[], const SkPoint texs[],
99 const SkColor colors[], SkXfermode* xmode,
100 const uint16_t indices[], int indexCount,
reed@google.com75d939b2011-12-07 15:07:23 +0000101 const SkPaint&) SK_OVERRIDE;
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000102 virtual void drawDevice(const SkDraw&, SkBaseDevice*, int x, int y,
reed@google.com75d939b2011-12-07 15:07:23 +0000103 const SkPaint&) SK_OVERRIDE;
104 virtual bool filterTextFlags(const SkPaint&, TextFlags*) SK_OVERRIDE;
reed@google.com7b201d22011-01-11 18:59:23 +0000105
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000106 virtual void flush() SK_OVERRIDE;
reed@google.com7b201d22011-01-11 18:59:23 +0000107
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000108 virtual void onAttachToCanvas(SkCanvas* canvas) SK_OVERRIDE;
109 virtual void onDetachFromCanvas() SK_OVERRIDE;
110
senorblanco@chromium.orgb7b7eb32014-03-19 18:24:04 +0000111 virtual const SkBitmap& onAccessBitmap() SK_OVERRIDE;
112
reed@google.com7b201d22011-01-11 18:59:23 +0000113 /**
reed@google.comac10a2d2010-12-22 21:39:39 +0000114 * Make's this device's rendertarget current in the underlying 3D API.
115 * Also implicitly flushes.
116 */
117 virtual void makeRenderTargetCurrent();
118
commit-bot@chromium.orgae761f72014-02-05 22:32:02 +0000119 virtual bool canHandleImageFilter(const SkImageFilter*) SK_OVERRIDE;
senorblanco@chromium.org4cb543d2014-03-14 15:44:01 +0000120 virtual bool filterImage(const SkImageFilter*, const SkBitmap&,
121 const SkImageFilter::Context&,
reed@google.com8926b162012-03-23 15:36:36 +0000122 SkBitmap*, SkIPoint*) SK_OVERRIDE;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000123
bsalomon@google.com84405e02012-03-05 19:57:21 +0000124 class SkAutoCachedTexture; // used internally
125
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000126
reed@google.comac10a2d2010-12-22 21:39:39 +0000127protected:
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000128 virtual bool onReadPixels(const SkImageInfo&, void*, size_t, int, int) SK_OVERRIDE;
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000129 virtual bool onWritePixels(const SkImageInfo&, const void*, size_t, int, int) SK_OVERRIDE;
bsalomon@google.comc6980972011-11-02 19:57:21 +0000130
robertphillips64bf7672014-08-21 13:07:35 -0700131 static bool FindLayersToHoist(const GrAccelData *gpuData,
132 const SkPicture::OperationList* ops,
mtklein533eb782014-08-27 10:39:42 -0700133 const SkRect& query,
robertphillips64bf7672014-08-21 13:07:35 -0700134 bool* pullForward);
135 void drawLayers(const SkPicture* picture,
136 const SkTDArray<GrCachedLayer*>& atlased,
137 const SkTDArray<GrCachedLayer*>& nonAtlased);
138 void unlockLayers(const SkPicture* picture);
139
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000140 /** PRIVATE / EXPERIMENTAL -- do not call */
robertphillips9b14f262014-06-04 05:40:44 -0700141 virtual void EXPERIMENTAL_optimize(const SkPicture* picture) SK_OVERRIDE;
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000142 /** PRIVATE / EXPERIMENTAL -- do not call */
reedd5fa1a42014-08-09 11:08:05 -0700143 virtual bool EXPERIMENTAL_drawPicture(SkCanvas* canvas, const SkPicture* picture,
144 const SkMatrix*, const SkPaint*) SK_OVERRIDE;
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000145
reed@google.comac10a2d2010-12-22 21:39:39 +0000146private:
147 GrContext* fContext;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000148
reed@google.comac10a2d2010-12-22 21:39:39 +0000149 GrSkDrawProcs* fDrawProcs;
150
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000151 GrClipData fClipData;
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000152
commit-bot@chromium.orgcbbc4812014-01-30 22:05:47 +0000153 GrTextContext* fMainTextContext;
154 GrTextContext* fFallbackTextContext;
commit-bot@chromium.orgcc40f062014-01-24 14:38:27 +0000155
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000156 // state for our render-target
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000157 GrRenderTarget* fRenderTarget;
158 bool fNeedClear;
reed@google.com7b201d22011-01-11 18:59:23 +0000159
reed89443ab2014-06-27 11:34:19 -0700160 // remove when our clients don't rely on accessBitmap()
161 SkBitmap fLegacyBitmap;
162
bsalomon23b406c2014-08-28 14:06:42 -0700163 SkGpuDevice(GrContext*, GrRenderTarget*, unsigned flags = 0);
164
165 SkGpuDevice(GrContext*, GrTexture*, unsigned flags = 0);
166
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000167 // called from rt and tex cons
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +0000168 void initFromRenderTarget(GrContext*, GrRenderTarget*, unsigned flags);
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000169
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000170 virtual SkBaseDevice* onCreateDevice(const SkImageInfo&, Usage) SK_OVERRIDE;
bsalomon@google.come97f0852011-06-17 13:10:25 +0000171
reed@google.com76f10a32014-02-05 15:32:21 +0000172 virtual SkSurface* newSurface(const SkImageInfo&) SK_OVERRIDE;
173
senorblancobe129b22014-08-08 07:14:35 -0700174 virtual SkImageFilter::Cache* getImageFilterCache() SK_OVERRIDE;
senorblanco55b6d8b2014-07-30 11:26:46 -0700175
bsalomon@google.coma99226e2012-10-12 15:01:38 +0000176 // sets the render target, clip, and matrix on GrContext. Use forceIdenity to override
177 // SkDraw's matrix and draw in device coords.
178 void prepareDraw(const SkDraw&, bool forceIdentity);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000179
180 /**
181 * Implementation for both drawBitmap and drawBitmapRect.
182 */
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +0000183 void drawBitmapCommon(const SkDraw&,
robertphillips@google.combac6b052012-09-28 18:06:49 +0000184 const SkBitmap& bitmap,
185 const SkRect* srcRectPtr,
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +0000186 const SkSize* dstSizePtr, // ignored iff srcRectPtr == NULL
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000187 const SkPaint&,
188 SkCanvas::DrawBitmapRectFlags flags);
reed@google.comac10a2d2010-12-22 21:39:39 +0000189
bsalomon@google.comf4a9c822012-03-16 14:02:46 +0000190 /**
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000191 * Helper functions called by drawBitmapCommon. By the time these are called the SkDraw's
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000192 * matrix, clip, and the device's render target has already been set on GrContext.
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000193 */
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000194
195 // The tileSize and clippedSrcRect will be valid only if true is returned.
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000196 bool shouldTileBitmap(const SkBitmap& bitmap,
197 const GrTextureParams& sampler,
bsalomon@google.comaf562b42013-10-24 17:52:07 +0000198 const SkRect* srcRectPtr,
199 int maxTileSize,
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000200 int* tileSize,
201 SkIRect* clippedSrcRect) const;
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000202 void internalDrawBitmap(const SkBitmap&,
203 const SkRect&,
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,
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000206 SkCanvas::DrawBitmapRectFlags flags,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000207 bool bicubic,
208 bool needsTextureDomain);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000209 void drawTiledBitmap(const SkBitmap& bitmap,
210 const SkRect& srcRect,
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000211 const SkIRect& clippedSrcRect,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000212 const GrTextureParams& params,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000213 const SkPaint& paint,
bsalomon@google.comaf562b42013-10-24 17:52:07 +0000214 SkCanvas::DrawBitmapRectFlags flags,
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000215 int tileSize,
216 bool bicubic);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000217
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000218 bool drawDashLine(const SkPoint pts[2], const SkPaint& paint);
219
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000220 static SkPicture::AccelData::Key ComputeAccelDataKey();
221
reed89443ab2014-06-27 11:34:19 -0700222 typedef SkBaseDevice INHERITED;
reed@google.comac10a2d2010-12-22 21:39:39 +0000223};
224
225#endif