blob: c9650d618483bad28f215944b40fa39b2e01f97e [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"
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000016#include "SkBitmapDevice.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
commit-bot@chromium.orgcbbc4812014-01-30 22:05:47 +000024class GrTextContext;
commit-bot@chromium.orgddf2bfb2014-01-30 16:41:23 +000025
reed@google.comac10a2d2010-12-22 21:39:39 +000026/**
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000027 * Subclass of SkBitmapDevice, which directs all drawing to the GrGpu owned by the
reed@google.comac10a2d2010-12-22 21:39:39 +000028 * canvas.
29 */
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000030class SK_API SkGpuDevice : public SkBitmapDevice {
reed@google.comac10a2d2010-12-22 21:39:39 +000031public:
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +000032 enum Flags {
skia.committer@gmail.com99e5b522014-03-21 03:02:42 +000033 kNeedClear_Flag = 1 << 0, //!< Surface requires an initial clear
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +000034 kCached_Flag = 1 << 1, //!< Surface is cached and needs to be unlocked when released
commit-bot@chromium.org6fcd1ef2014-05-02 12:39:41 +000035 kDFFonts_Flag = 1 << 2, //!< Surface should render fonts using signed distance fields
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +000036 };
bsalomon@google.com123ac1d2013-03-28 19:18:12 +000037
38 /**
39 * 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 +000040 * target. The caller owns a ref on the returned device. If the surface is cached,
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +000041 * the kCached_Flag should be specified to make the device responsible for unlocking
42 * the surface when it is released.
bsalomon@google.com123ac1d2013-03-28 19:18:12 +000043 */
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +000044 static SkGpuDevice* Create(GrSurface* surface, unsigned flags = 0);
bsalomon@google.com123ac1d2013-03-28 19:18:12 +000045
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +000046 /**
reed@google.comaf951c92011-06-16 19:10:39 +000047 * New device that will create an offscreen renderTarget based on the
commit-bot@chromium.org15a14052014-02-16 00:59:25 +000048 * ImageInfo and sampleCount. The device's storage will not
49 * count against the GrContext's texture cache budget. The device's pixels
50 * will be uninitialized. On failure, returns NULL.
51 */
52 static SkGpuDevice* Create(GrContext*, const SkImageInfo&, int sampleCount);
53
reed@google.comaf951c92011-06-16 19:10:39 +000054 /**
reed@google.com44699382013-10-31 17:28:30 +000055 * DEPRECATED -- need to make this private, call Create(surface)
reed@google.comaf951c92011-06-16 19:10:39 +000056 * New device that will render to the specified renderTarget.
57 */
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +000058 SkGpuDevice(GrContext*, GrRenderTarget*, unsigned flags = 0);
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +000059
60 /**
reed@google.com44699382013-10-31 17:28:30 +000061 * DEPRECATED -- need to make this private, call Create(surface)
bsalomon@google.comf9046fe2011-06-17 15:10:21 +000062 * New device that will render to the texture (as a rendertarget).
63 * The GrTexture's asRenderTarget() must be non-NULL or device will not
64 * function.
65 */
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +000066 SkGpuDevice(GrContext*, GrTexture*, unsigned flags = 0);
bsalomon@google.comf9046fe2011-06-17 15:10:21 +000067
reed@google.comac10a2d2010-12-22 21:39:39 +000068 virtual ~SkGpuDevice();
reed@google.com7b201d22011-01-11 18:59:23 +000069
reed@google.comac10a2d2010-12-22 21:39:39 +000070 GrContext* context() const { return fContext; }
71
commit-bot@chromium.orgb8d00db2013-06-26 19:18:23 +000072 virtual GrRenderTarget* accessRenderTarget() SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000073
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000074 // overrides from SkBaseDevice
robertphillips@google.com07f81a52013-09-17 12:26:23 +000075 virtual int width() const SK_OVERRIDE {
76 return NULL == fRenderTarget ? 0 : fRenderTarget->width();
77 }
78 virtual int height() const SK_OVERRIDE {
79 return NULL == fRenderTarget ? 0 : fRenderTarget->height();
80 }
skia.committer@gmail.com2291e722013-09-18 07:01:33 +000081 virtual bool isOpaque() const SK_OVERRIDE {
82 return NULL == fRenderTarget ? false
83 : kRGB_565_GrPixelConfig == fRenderTarget->config();
robertphillips@google.com07f81a52013-09-17 12:26:23 +000084 }
reeda6a8f002014-06-02 05:45:31 -070085#ifdef SK_SUPPORT_LEGACY_DEVICE_CONFIG
robertphillips@google.com07f81a52013-09-17 12:26:23 +000086 virtual SkBitmap::Config config() const SK_OVERRIDE;
reeda6a8f002014-06-02 05:45:31 -070087#endif
reed@google.comac10a2d2010-12-22 21:39:39 +000088
reed@google.com75d939b2011-12-07 15:07:23 +000089 virtual void clear(SkColor color) SK_OVERRIDE;
reed@google.com75d939b2011-12-07 15:07:23 +000090 virtual void drawPaint(const SkDraw&, const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000091 virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, size_t count,
reed@google.com75d939b2011-12-07 15:07:23 +000092 const SkPoint[], const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000093 virtual void drawRect(const SkDraw&, const SkRect& r,
reed@google.com75d939b2011-12-07 15:07:23 +000094 const SkPaint& paint) SK_OVERRIDE;
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +000095 virtual void drawRRect(const SkDraw&, const SkRRect& r,
96 const SkPaint& paint) SK_OVERRIDE;
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +000097 virtual void drawDRRect(const SkDraw& draw, const SkRRect& outer,
98 const SkRRect& inner, const SkPaint& paint) SK_OVERRIDE;
jvanverth@google.com46d3d392013-01-22 13:34:01 +000099 virtual void drawOval(const SkDraw&, const SkRect& oval,
100 const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +0000101 virtual void drawPath(const SkDraw&, const SkPath& path,
102 const SkPaint& paint, const SkMatrix* prePathMatrix,
reed@google.com75d939b2011-12-07 15:07:23 +0000103 bool pathIsMutable) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +0000104 virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap,
reed@google.com75d939b2011-12-07 15:07:23 +0000105 const SkMatrix&, const SkPaint&) SK_OVERRIDE;
reed@google.com33535f32012-09-25 15:37:50 +0000106 virtual void drawBitmapRect(const SkDraw&, const SkBitmap&,
107 const SkRect* srcOrNull, const SkRect& dst,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000108 const SkPaint& paint,
109 SkCanvas::DrawBitmapRectFlags flags) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +0000110 virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap,
111 int x, int y, const SkPaint& paint);
112 virtual void drawText(const SkDraw&, const void* text, size_t len,
reed@google.com75d939b2011-12-07 15:07:23 +0000113 SkScalar x, SkScalar y, const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +0000114 virtual void drawPosText(const SkDraw&, const void* text, size_t len,
115 const SkScalar pos[], SkScalar constY,
reed@google.com75d939b2011-12-07 15:07:23 +0000116 int scalarsPerPos, const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +0000117 virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len,
118 const SkPath& path, const SkMatrix* matrix,
reed@google.com75d939b2011-12-07 15:07:23 +0000119 const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +0000120 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount,
121 const SkPoint verts[], const SkPoint texs[],
122 const SkColor colors[], SkXfermode* xmode,
123 const uint16_t indices[], int indexCount,
reed@google.com75d939b2011-12-07 15:07:23 +0000124 const SkPaint&) SK_OVERRIDE;
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000125 virtual void drawDevice(const SkDraw&, SkBaseDevice*, int x, int y,
reed@google.com75d939b2011-12-07 15:07:23 +0000126 const SkPaint&) SK_OVERRIDE;
127 virtual bool filterTextFlags(const SkPaint&, TextFlags*) SK_OVERRIDE;
reed@google.com7b201d22011-01-11 18:59:23 +0000128
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000129 virtual void flush() SK_OVERRIDE;
reed@google.com7b201d22011-01-11 18:59:23 +0000130
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000131 virtual void onAttachToCanvas(SkCanvas* canvas) SK_OVERRIDE;
132 virtual void onDetachFromCanvas() SK_OVERRIDE;
133
senorblanco@chromium.orgb7b7eb32014-03-19 18:24:04 +0000134 virtual const SkBitmap& onAccessBitmap() SK_OVERRIDE;
135
reed@google.com7b201d22011-01-11 18:59:23 +0000136 /**
reed@google.comac10a2d2010-12-22 21:39:39 +0000137 * Make's this device's rendertarget current in the underlying 3D API.
138 * Also implicitly flushes.
139 */
140 virtual void makeRenderTargetCurrent();
141
commit-bot@chromium.orgae761f72014-02-05 22:32:02 +0000142 virtual bool canHandleImageFilter(const SkImageFilter*) SK_OVERRIDE;
senorblanco@chromium.org4cb543d2014-03-14 15:44:01 +0000143 virtual bool filterImage(const SkImageFilter*, const SkBitmap&,
144 const SkImageFilter::Context&,
reed@google.com8926b162012-03-23 15:36:36 +0000145 SkBitmap*, SkIPoint*) SK_OVERRIDE;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000146
bsalomon@google.com84405e02012-03-05 19:57:21 +0000147 class SkAutoCachedTexture; // used internally
148
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000149
reed@google.comac10a2d2010-12-22 21:39:39 +0000150protected:
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000151 virtual bool onReadPixels(const SkImageInfo&, void*, size_t, int, int) SK_OVERRIDE;
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000152 virtual bool onWritePixels(const SkImageInfo&, const void*, size_t, int, int) SK_OVERRIDE;
bsalomon@google.comc6980972011-11-02 19:57:21 +0000153
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000154 /** PRIVATE / EXPERIMENTAL -- do not call */
robertphillips9b14f262014-06-04 05:40:44 -0700155 virtual void EXPERIMENTAL_optimize(const SkPicture* picture) SK_OVERRIDE;
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000156 /** PRIVATE / EXPERIMENTAL -- do not call */
robertphillips9b14f262014-06-04 05:40:44 -0700157 virtual void EXPERIMENTAL_purge(const SkPicture* picture) SK_OVERRIDE;
commit-bot@chromium.orgc8733292014-04-11 15:54:14 +0000158 /** PRIVATE / EXPERIMENTAL -- do not call */
robertphillips9b14f262014-06-04 05:40:44 -0700159 virtual bool EXPERIMENTAL_drawPicture(SkCanvas* canvas, const SkPicture* picture) SK_OVERRIDE;
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000160
reed@google.comac10a2d2010-12-22 21:39:39 +0000161private:
162 GrContext* fContext;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000163
reed@google.comac10a2d2010-12-22 21:39:39 +0000164 GrSkDrawProcs* fDrawProcs;
165
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000166 GrClipData fClipData;
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000167
commit-bot@chromium.orgcbbc4812014-01-30 22:05:47 +0000168 GrTextContext* fMainTextContext;
169 GrTextContext* fFallbackTextContext;
commit-bot@chromium.orgcc40f062014-01-24 14:38:27 +0000170
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000171 // state for our render-target
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000172 GrRenderTarget* fRenderTarget;
173 bool fNeedClear;
reed@google.com7b201d22011-01-11 18:59:23 +0000174
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000175 // called from rt and tex cons
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +0000176 void initFromRenderTarget(GrContext*, GrRenderTarget*, unsigned flags);
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000177
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000178 virtual SkBaseDevice* onCreateDevice(const SkImageInfo&, Usage) SK_OVERRIDE;
bsalomon@google.come97f0852011-06-17 13:10:25 +0000179
reed@google.com76f10a32014-02-05 15:32:21 +0000180 virtual SkSurface* newSurface(const SkImageInfo&) SK_OVERRIDE;
181
bsalomon@google.coma99226e2012-10-12 15:01:38 +0000182 // sets the render target, clip, and matrix on GrContext. Use forceIdenity to override
183 // SkDraw's matrix and draw in device coords.
184 void prepareDraw(const SkDraw&, bool forceIdentity);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000185
186 /**
187 * Implementation for both drawBitmap and drawBitmapRect.
188 */
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +0000189 void drawBitmapCommon(const SkDraw&,
robertphillips@google.combac6b052012-09-28 18:06:49 +0000190 const SkBitmap& bitmap,
191 const SkRect* srcRectPtr,
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +0000192 const SkSize* dstSizePtr, // ignored iff srcRectPtr == NULL
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000193 const SkPaint&,
194 SkCanvas::DrawBitmapRectFlags flags);
reed@google.comac10a2d2010-12-22 21:39:39 +0000195
bsalomon@google.comf4a9c822012-03-16 14:02:46 +0000196 /**
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000197 * Helper functions called by drawBitmapCommon. By the time these are called the SkDraw's
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000198 * matrix, clip, and the device's render target has already been set on GrContext.
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000199 */
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000200
201 // The tileSize and clippedSrcRect will be valid only if true is returned.
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000202 bool shouldTileBitmap(const SkBitmap& bitmap,
203 const GrTextureParams& sampler,
bsalomon@google.comaf562b42013-10-24 17:52:07 +0000204 const SkRect* srcRectPtr,
205 int maxTileSize,
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000206 int* tileSize,
207 SkIRect* clippedSrcRect) const;
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000208 void internalDrawBitmap(const SkBitmap&,
209 const SkRect&,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000210 const GrTextureParams& params,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000211 const SkPaint& paint,
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000212 SkCanvas::DrawBitmapRectFlags flags,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000213 bool bicubic,
214 bool needsTextureDomain);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000215 void drawTiledBitmap(const SkBitmap& bitmap,
216 const SkRect& srcRect,
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000217 const SkIRect& clippedSrcRect,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000218 const GrTextureParams& params,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000219 const SkPaint& paint,
bsalomon@google.comaf562b42013-10-24 17:52:07 +0000220 SkCanvas::DrawBitmapRectFlags flags,
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000221 int tileSize,
222 bool bicubic);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000223
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000224 bool drawDashLine(const SkPoint pts[2], const SkPaint& paint);
225
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000226 static SkPicture::AccelData::Key ComputeAccelDataKey();
227
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000228 typedef SkBitmapDevice INHERITED;
reed@google.comac10a2d2010-12-22 21:39:39 +0000229};
230
231#endif