blob: b600f993cd79e9593c6d13759d12507aff128cf5 [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
commit-bot@chromium.orgb8d00db2013-06-26 19:18:23 +000071 virtual GrRenderTarget* accessRenderTarget() SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000072
reedf252f642014-06-14 04:24:56 -070073 virtual 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
reed@google.com75d939b2011-12-07 15:07:23 +000077 virtual 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
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000115 virtual void flush() SK_OVERRIDE;
reed@google.com7b201d22011-01-11 18:59:23 +0000116
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000117 virtual void onAttachToCanvas(SkCanvas* canvas) SK_OVERRIDE;
118 virtual void onDetachFromCanvas() SK_OVERRIDE;
119
senorblanco@chromium.orgb7b7eb32014-03-19 18:24:04 +0000120 virtual const SkBitmap& onAccessBitmap() SK_OVERRIDE;
121
commit-bot@chromium.orgae761f72014-02-05 22:32:02 +0000122 virtual 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:
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000132 virtual bool onReadPixels(const SkImageInfo&, void*, size_t, int, int) SK_OVERRIDE;
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000133 virtual 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
fmalita6987dca2014-11-13 08:33:37 -0800158 virtual SkBaseDevice* onCreateCompatibleDevice(const CreateInfo&) SK_OVERRIDE;
bsalomon@google.come97f0852011-06-17 13:10:25 +0000159
reed4a8126e2014-09-22 07:29:03 -0700160 virtual SkSurface* newSurface(const SkImageInfo&, const SkSurfaceProps&) SK_OVERRIDE;
reed@google.com76f10a32014-02-05 15:32:21 +0000161
senorblancobe129b22014-08-08 07:14:35 -0700162 virtual SkImageFilter::Cache* getImageFilterCache() SK_OVERRIDE;
reed841010f2014-09-10 07:23:32 -0700163
reed5d9ab282014-09-19 13:04:17 -0700164 virtual bool forceConservativeRasterClip() const SK_OVERRIDE { return true; }
senorblanco55b6d8b2014-07-30 11:26:46 -0700165
bsalomon@google.coma99226e2012-10-12 15:01:38 +0000166 // sets the render target, clip, and matrix on GrContext. Use forceIdenity to override
167 // SkDraw's matrix and draw in device coords.
168 void prepareDraw(const SkDraw&, bool forceIdentity);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000169
170 /**
171 * Implementation for both drawBitmap and drawBitmapRect.
172 */
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +0000173 void drawBitmapCommon(const SkDraw&,
robertphillips@google.combac6b052012-09-28 18:06:49 +0000174 const SkBitmap& bitmap,
175 const SkRect* srcRectPtr,
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +0000176 const SkSize* dstSizePtr, // ignored iff srcRectPtr == NULL
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000177 const SkPaint&,
178 SkCanvas::DrawBitmapRectFlags flags);
reed@google.comac10a2d2010-12-22 21:39:39 +0000179
bsalomon@google.comf4a9c822012-03-16 14:02:46 +0000180 /**
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000181 * Helper functions called by drawBitmapCommon. By the time these are called the SkDraw's
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000182 * matrix, clip, and the device's render target has already been set on GrContext.
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000183 */
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000184
185 // The tileSize and clippedSrcRect will be valid only if true is returned.
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000186 bool shouldTileBitmap(const SkBitmap& bitmap,
187 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&,
193 const SkRect&,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000194 const GrTextureParams& params,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000195 const SkPaint& paint,
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000196 SkCanvas::DrawBitmapRectFlags flags,
commit-bot@chromium.orga17773f2014-05-09 13:53:38 +0000197 bool bicubic,
198 bool needsTextureDomain);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000199 void drawTiledBitmap(const SkBitmap& bitmap,
200 const SkRect& srcRect,
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000201 const SkIRect& clippedSrcRect,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000202 const GrTextureParams& params,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000203 const SkPaint& paint,
bsalomon@google.comaf562b42013-10-24 17:52:07 +0000204 SkCanvas::DrawBitmapRectFlags flags,
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000205 int tileSize,
206 bool bicubic);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000207
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000208 bool drawDashLine(const SkPoint pts[2], const SkPaint& paint);
209
commit-bot@chromium.org145d1c02014-03-16 19:46:36 +0000210 static SkPicture::AccelData::Key ComputeAccelDataKey();
211
reed89443ab2014-06-27 11:34:19 -0700212 typedef SkBaseDevice INHERITED;
reed@google.comac10a2d2010-12-22 21:39:39 +0000213};
214
215#endif