epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 1 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 2 | /* |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 3 | * 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.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 10 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 11 | #ifndef SkGpuDevice_DEFINED |
| 12 | #define SkGpuDevice_DEFINED |
| 13 | |
| 14 | #include "SkGr.h" |
reed@google.com | af951c9 | 2011-06-16 19:10:39 +0000 | [diff] [blame] | 15 | #include "SkBitmap.h" |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 16 | #include "SkDevice.h" |
commit-bot@chromium.org | 145d1c0 | 2014-03-16 19:46:36 +0000 | [diff] [blame] | 17 | #include "SkPicture.h" |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 18 | #include "SkRegion.h" |
bsalomon@google.com | 50398bf | 2011-07-26 20:45:30 +0000 | [diff] [blame] | 19 | #include "GrContext.h" |
bsalomon | afbf2d6 | 2014-09-30 12:18:44 -0700 | [diff] [blame] | 20 | #include "GrSurfacePriv.h" |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 21 | |
| 22 | struct SkDrawProcs; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 23 | struct GrSkDrawProcs; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 24 | |
robertphillips | 64bf767 | 2014-08-21 13:07:35 -0700 | [diff] [blame] | 25 | class GrAccelData; |
| 26 | struct GrCachedLayer; |
commit-bot@chromium.org | cbbc481 | 2014-01-30 22:05:47 +0000 | [diff] [blame] | 27 | class GrTextContext; |
commit-bot@chromium.org | ddf2bfb | 2014-01-30 16:41:23 +0000 | [diff] [blame] | 28 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 29 | /** |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 30 | * Subclass of SkBaseDevice, which directs all drawing to the GrGpu owned by the |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 31 | * canvas. |
| 32 | */ |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 33 | class SK_API SkGpuDevice : public SkBaseDevice { |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 34 | public: |
commit-bot@chromium.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 35 | enum Flags { |
skia.committer@gmail.com | 99e5b52 | 2014-03-21 03:02:42 +0000 | [diff] [blame] | 36 | kNeedClear_Flag = 1 << 0, //!< Surface requires an initial clear |
jvanverth | 4736e14 | 2014-11-07 07:12:46 -0800 | [diff] [blame] | 37 | kDFText_Flag = 1 << 1, //!< Surface should render text using signed distance fields |
commit-bot@chromium.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 38 | }; |
bsalomon@google.com | 123ac1d | 2013-03-28 19:18:12 +0000 | [diff] [blame] | 39 | |
| 40 | /** |
| 41 | * Creates an SkGpuDevice from a GrSurface. This will fail if the surface is not a render |
skia.committer@gmail.com | 99e5b52 | 2014-03-21 03:02:42 +0000 | [diff] [blame] | 42 | * target. The caller owns a ref on the returned device. If the surface is cached, |
commit-bot@chromium.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 43 | * the kCached_Flag should be specified to make the device responsible for unlocking |
| 44 | * the surface when it is released. |
bsalomon@google.com | 123ac1d | 2013-03-28 19:18:12 +0000 | [diff] [blame] | 45 | */ |
reed | 4a8126e | 2014-09-22 07:29:03 -0700 | [diff] [blame] | 46 | static SkGpuDevice* Create(GrSurface* surface, const SkSurfaceProps&, unsigned flags = 0); |
bsalomon@google.com | 123ac1d | 2013-03-28 19:18:12 +0000 | [diff] [blame] | 47 | |
bsalomon@google.com | 2e7b43d | 2011-01-18 20:57:22 +0000 | [diff] [blame] | 48 | /** |
reed@google.com | af951c9 | 2011-06-16 19:10:39 +0000 | [diff] [blame] | 49 | * New device that will create an offscreen renderTarget based on the |
commit-bot@chromium.org | 15a1405 | 2014-02-16 00:59:25 +0000 | [diff] [blame] | 50 | * 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 | */ |
reed | 4a8126e | 2014-09-22 07:29:03 -0700 | [diff] [blame] | 54 | static SkGpuDevice* Create(GrContext*, const SkImageInfo&, const SkSurfaceProps&, |
| 55 | int sampleCount); |
commit-bot@chromium.org | 15a1405 | 2014-02-16 00:59:25 +0000 | [diff] [blame] | 56 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 57 | virtual ~SkGpuDevice(); |
reed@google.com | 7b201d2 | 2011-01-11 18:59:23 +0000 | [diff] [blame] | 58 | |
reed | b2db898 | 2014-11-13 12:41:02 -0800 | [diff] [blame] | 59 | 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.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 66 | GrContext* context() const { return fContext; } |
| 67 | |
commit-bot@chromium.org | b8d00db | 2013-06-26 19:18:23 +0000 | [diff] [blame] | 68 | virtual GrRenderTarget* accessRenderTarget() SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 69 | |
reed | f252f64 | 2014-06-14 04:24:56 -0700 | [diff] [blame] | 70 | virtual SkImageInfo imageInfo() const SK_OVERRIDE { |
bsalomon | afbf2d6 | 2014-09-30 12:18:44 -0700 | [diff] [blame] | 71 | return fRenderTarget ? fRenderTarget->surfacePriv().info() : SkImageInfo::MakeUnknown(); |
robertphillips@google.com | 07f81a5 | 2013-09-17 12:26:23 +0000 | [diff] [blame] | 72 | } |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 73 | |
reed | af641a1 | 2014-12-02 19:40:18 -0800 | [diff] [blame] | 74 | virtual void clear(SkColor color) SK_OVERRIDE; |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 75 | virtual void drawPaint(const SkDraw&, const SkPaint& paint) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 76 | virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, size_t count, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 77 | const SkPoint[], const SkPaint& paint) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 78 | virtual void drawRect(const SkDraw&, const SkRect& r, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 79 | const SkPaint& paint) SK_OVERRIDE; |
commit-bot@chromium.org | f2bfd54 | 2013-04-25 15:27:00 +0000 | [diff] [blame] | 80 | virtual void drawRRect(const SkDraw&, const SkRRect& r, |
| 81 | const SkPaint& paint) SK_OVERRIDE; |
commit-bot@chromium.org | 0a09d71 | 2014-04-09 21:26:11 +0000 | [diff] [blame] | 82 | virtual void drawDRRect(const SkDraw& draw, const SkRRect& outer, |
| 83 | const SkRRect& inner, const SkPaint& paint) SK_OVERRIDE; |
jvanverth@google.com | 46d3d39 | 2013-01-22 13:34:01 +0000 | [diff] [blame] | 84 | virtual void drawOval(const SkDraw&, const SkRect& oval, |
| 85 | const SkPaint& paint) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 86 | virtual void drawPath(const SkDraw&, const SkPath& path, |
| 87 | const SkPaint& paint, const SkMatrix* prePathMatrix, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 88 | bool pathIsMutable) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 89 | virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 90 | const SkMatrix&, const SkPaint&) SK_OVERRIDE; |
reed@google.com | 33535f3 | 2012-09-25 15:37:50 +0000 | [diff] [blame] | 91 | virtual void drawBitmapRect(const SkDraw&, const SkBitmap&, |
| 92 | const SkRect* srcOrNull, const SkRect& dst, |
commit-bot@chromium.org | eed779d | 2013-08-16 10:24:37 +0000 | [diff] [blame] | 93 | const SkPaint& paint, |
| 94 | SkCanvas::DrawBitmapRectFlags flags) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 95 | virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap, |
| 96 | int x, int y, const SkPaint& paint); |
| 97 | virtual void drawText(const SkDraw&, const void* text, size_t len, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 98 | SkScalar x, SkScalar y, const SkPaint&) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 99 | virtual void drawPosText(const SkDraw&, const void* text, size_t len, |
fmalita | 05c4a43 | 2014-09-29 06:29:53 -0700 | [diff] [blame] | 100 | const SkScalar pos[], int scalarsPerPos, |
| 101 | const SkPoint& offset, const SkPaint&) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 102 | virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len, |
| 103 | const SkPath& path, const SkMatrix* matrix, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 104 | const SkPaint&) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 105 | virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount, |
| 106 | const SkPoint verts[], const SkPoint texs[], |
| 107 | const SkColor colors[], SkXfermode* xmode, |
| 108 | const uint16_t indices[], int indexCount, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 109 | const SkPaint&) SK_OVERRIDE; |
robertphillips@google.com | 1f2f338 | 2013-08-29 11:54:56 +0000 | [diff] [blame] | 110 | virtual void drawDevice(const SkDraw&, SkBaseDevice*, int x, int y, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 111 | const SkPaint&) SK_OVERRIDE; |
reed@google.com | 7b201d2 | 2011-01-11 18:59:23 +0000 | [diff] [blame] | 112 | |
robertphillips@google.com | 1f2f338 | 2013-08-29 11:54:56 +0000 | [diff] [blame] | 113 | virtual void flush() SK_OVERRIDE; |
reed@google.com | 7b201d2 | 2011-01-11 18:59:23 +0000 | [diff] [blame] | 114 | |
robertphillips@google.com | 40a1ae4 | 2012-07-13 15:36:15 +0000 | [diff] [blame] | 115 | virtual void onAttachToCanvas(SkCanvas* canvas) SK_OVERRIDE; |
| 116 | virtual void onDetachFromCanvas() SK_OVERRIDE; |
| 117 | |
senorblanco@chromium.org | b7b7eb3 | 2014-03-19 18:24:04 +0000 | [diff] [blame] | 118 | virtual const SkBitmap& onAccessBitmap() SK_OVERRIDE; |
| 119 | |
commit-bot@chromium.org | ae761f7 | 2014-02-05 22:32:02 +0000 | [diff] [blame] | 120 | virtual bool canHandleImageFilter(const SkImageFilter*) SK_OVERRIDE; |
senorblanco@chromium.org | 4cb543d | 2014-03-14 15:44:01 +0000 | [diff] [blame] | 121 | virtual bool filterImage(const SkImageFilter*, const SkBitmap&, |
| 122 | const SkImageFilter::Context&, |
reed@google.com | 8926b16 | 2012-03-23 15:36:36 +0000 | [diff] [blame] | 123 | SkBitmap*, SkIPoint*) SK_OVERRIDE; |
vandebo@chromium.org | 74b4619 | 2012-01-28 01:45:11 +0000 | [diff] [blame] | 124 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 125 | protected: |
commit-bot@chromium.org | a713f9c | 2014-03-17 21:31:26 +0000 | [diff] [blame] | 126 | virtual bool onReadPixels(const SkImageInfo&, void*, size_t, int, int) SK_OVERRIDE; |
commit-bot@chromium.org | 4cd9e21 | 2014-03-07 03:25:16 +0000 | [diff] [blame] | 127 | virtual bool onWritePixels(const SkImageInfo&, const void*, size_t, int, int) SK_OVERRIDE; |
reed | b2db898 | 2014-11-13 12:41:02 -0800 | [diff] [blame] | 128 | bool onShouldDisableLCD(const SkPaint&) const SK_OVERRIDE; |
bsalomon@google.com | c698097 | 2011-11-02 19:57:21 +0000 | [diff] [blame] | 129 | |
commit-bot@chromium.org | 145d1c0 | 2014-03-16 19:46:36 +0000 | [diff] [blame] | 130 | /** PRIVATE / EXPERIMENTAL -- do not call */ |
reed | d5fa1a4 | 2014-08-09 11:08:05 -0700 | [diff] [blame] | 131 | virtual bool EXPERIMENTAL_drawPicture(SkCanvas* canvas, const SkPicture* picture, |
| 132 | const SkMatrix*, const SkPaint*) SK_OVERRIDE; |
commit-bot@chromium.org | 145d1c0 | 2014-03-16 19:46:36 +0000 | [diff] [blame] | 133 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 134 | private: |
| 135 | GrContext* fContext; |
bsalomon@google.com | 5782d71 | 2011-01-21 21:03:59 +0000 | [diff] [blame] | 136 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 137 | GrSkDrawProcs* fDrawProcs; |
| 138 | |
robertphillips@google.com | 641f8b1 | 2012-07-31 19:15:58 +0000 | [diff] [blame] | 139 | GrClipData fClipData; |
robertphillips@google.com | 40a1ae4 | 2012-07-13 15:36:15 +0000 | [diff] [blame] | 140 | |
jvanverth | 8c27a18 | 2014-10-14 08:45:50 -0700 | [diff] [blame] | 141 | GrTextContext* fTextContext; |
commit-bot@chromium.org | cc40f06 | 2014-01-24 14:38:27 +0000 | [diff] [blame] | 142 | |
bsalomon@google.com | a6926b1 | 2012-10-10 15:25:50 +0000 | [diff] [blame] | 143 | // state for our render-target |
jvanverth | 4736e14 | 2014-11-07 07:12:46 -0800 | [diff] [blame] | 144 | GrRenderTarget* fRenderTarget; |
| 145 | uint32_t fFlags; |
reed@google.com | 7b201d2 | 2011-01-11 18:59:23 +0000 | [diff] [blame] | 146 | |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 147 | // remove when our clients don't rely on accessBitmap() |
| 148 | SkBitmap fLegacyBitmap; |
| 149 | |
reed | 4a8126e | 2014-09-22 07:29:03 -0700 | [diff] [blame] | 150 | SkGpuDevice(GrSurface*, const SkSurfaceProps&, unsigned flags = 0); |
bsalomon@google.com | 06cd732 | 2012-03-30 18:45:35 +0000 | [diff] [blame] | 151 | |
fmalita | 6987dca | 2014-11-13 08:33:37 -0800 | [diff] [blame] | 152 | virtual SkBaseDevice* onCreateCompatibleDevice(const CreateInfo&) SK_OVERRIDE; |
bsalomon@google.com | e97f085 | 2011-06-17 13:10:25 +0000 | [diff] [blame] | 153 | |
reed | 4a8126e | 2014-09-22 07:29:03 -0700 | [diff] [blame] | 154 | virtual SkSurface* newSurface(const SkImageInfo&, const SkSurfaceProps&) SK_OVERRIDE; |
reed@google.com | 76f10a3 | 2014-02-05 15:32:21 +0000 | [diff] [blame] | 155 | |
senorblanco | be129b2 | 2014-08-08 07:14:35 -0700 | [diff] [blame] | 156 | virtual SkImageFilter::Cache* getImageFilterCache() SK_OVERRIDE; |
reed | 841010f | 2014-09-10 07:23:32 -0700 | [diff] [blame] | 157 | |
reed | 5d9ab28 | 2014-09-19 13:04:17 -0700 | [diff] [blame] | 158 | virtual bool forceConservativeRasterClip() const SK_OVERRIDE { return true; } |
senorblanco | 55b6d8b | 2014-07-30 11:26:46 -0700 | [diff] [blame] | 159 | |
bsalomon@google.com | a99226e | 2012-10-12 15:01:38 +0000 | [diff] [blame] | 160 | // 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.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 163 | |
| 164 | /** |
| 165 | * Implementation for both drawBitmap and drawBitmapRect. |
| 166 | */ |
skia.committer@gmail.com | 22b460c | 2012-09-29 02:01:02 +0000 | [diff] [blame] | 167 | void drawBitmapCommon(const SkDraw&, |
robertphillips@google.com | bac6b05 | 2012-09-28 18:06:49 +0000 | [diff] [blame] | 168 | const SkBitmap& bitmap, |
| 169 | const SkRect* srcRectPtr, |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 170 | const SkSize* dstSizePtr, // ignored iff srcRectPtr == NULL |
commit-bot@chromium.org | eed779d | 2013-08-16 10:24:37 +0000 | [diff] [blame] | 171 | const SkPaint&, |
| 172 | SkCanvas::DrawBitmapRectFlags flags); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 173 | |
bsalomon@google.com | f4a9c82 | 2012-03-16 14:02:46 +0000 | [diff] [blame] | 174 | /** |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 175 | * Helper functions called by drawBitmapCommon. By the time these are called the SkDraw's |
commit-bot@chromium.org | 7edad87 | 2013-10-25 14:58:12 +0000 | [diff] [blame] | 176 | * matrix, clip, and the device's render target has already been set on GrContext. |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 177 | */ |
commit-bot@chromium.org | 7edad87 | 2013-10-25 14:58:12 +0000 | [diff] [blame] | 178 | |
| 179 | // The tileSize and clippedSrcRect will be valid only if true is returned. |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 180 | bool shouldTileBitmap(const SkBitmap& bitmap, |
| 181 | const GrTextureParams& sampler, |
bsalomon@google.com | af562b4 | 2013-10-24 17:52:07 +0000 | [diff] [blame] | 182 | const SkRect* srcRectPtr, |
| 183 | int maxTileSize, |
commit-bot@chromium.org | 7edad87 | 2013-10-25 14:58:12 +0000 | [diff] [blame] | 184 | int* tileSize, |
| 185 | SkIRect* clippedSrcRect) const; |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 186 | void internalDrawBitmap(const SkBitmap&, |
| 187 | const SkRect&, |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 188 | const GrTextureParams& params, |
commit-bot@chromium.org | eed779d | 2013-08-16 10:24:37 +0000 | [diff] [blame] | 189 | const SkPaint& paint, |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 190 | SkCanvas::DrawBitmapRectFlags flags, |
commit-bot@chromium.org | a17773f | 2014-05-09 13:53:38 +0000 | [diff] [blame] | 191 | bool bicubic, |
| 192 | bool needsTextureDomain); |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 193 | void drawTiledBitmap(const SkBitmap& bitmap, |
| 194 | const SkRect& srcRect, |
commit-bot@chromium.org | 7edad87 | 2013-10-25 14:58:12 +0000 | [diff] [blame] | 195 | const SkIRect& clippedSrcRect, |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 196 | const GrTextureParams& params, |
commit-bot@chromium.org | eed779d | 2013-08-16 10:24:37 +0000 | [diff] [blame] | 197 | const SkPaint& paint, |
bsalomon@google.com | af562b4 | 2013-10-24 17:52:07 +0000 | [diff] [blame] | 198 | SkCanvas::DrawBitmapRectFlags flags, |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 199 | int tileSize, |
| 200 | bool bicubic); |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 201 | |
commit-bot@chromium.org | 628ed0b | 2014-05-19 14:32:49 +0000 | [diff] [blame] | 202 | bool drawDashLine(const SkPoint pts[2], const SkPaint& paint); |
| 203 | |
fmalita | 2d97bc1 | 2014-11-20 10:44:58 -0800 | [diff] [blame] | 204 | bool filterTexture(GrContext*, GrTexture*, const SkImageFilter*, |
| 205 | const SkImageFilter::Context&, |
| 206 | SkBitmap* result, SkIPoint* offset); |
| 207 | |
commit-bot@chromium.org | 145d1c0 | 2014-03-16 19:46:36 +0000 | [diff] [blame] | 208 | static SkPicture::AccelData::Key ComputeAccelDataKey(); |
| 209 | |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 210 | typedef SkBaseDevice INHERITED; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 211 | }; |
| 212 | |
| 213 | #endif |