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" |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 20 | |
| 21 | struct SkDrawProcs; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 22 | struct GrSkDrawProcs; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 23 | |
commit-bot@chromium.org | cbbc481 | 2014-01-30 22:05:47 +0000 | [diff] [blame] | 24 | class GrTextContext; |
commit-bot@chromium.org | ddf2bfb | 2014-01-30 16:41:23 +0000 | [diff] [blame] | 25 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 26 | /** |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 27 | * 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] | 28 | * canvas. |
| 29 | */ |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 30 | class SK_API SkGpuDevice : public SkBaseDevice { |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 31 | public: |
commit-bot@chromium.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 32 | enum Flags { |
skia.committer@gmail.com | 99e5b52 | 2014-03-21 03:02:42 +0000 | [diff] [blame] | 33 | kNeedClear_Flag = 1 << 0, //!< Surface requires an initial clear |
commit-bot@chromium.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 34 | kCached_Flag = 1 << 1, //!< Surface is cached and needs to be unlocked when released |
commit-bot@chromium.org | 6fcd1ef | 2014-05-02 12:39:41 +0000 | [diff] [blame] | 35 | kDFFonts_Flag = 1 << 2, //!< Surface should render fonts using signed distance fields |
commit-bot@chromium.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 36 | }; |
bsalomon@google.com | 123ac1d | 2013-03-28 19:18:12 +0000 | [diff] [blame] | 37 | |
| 38 | /** |
| 39 | * 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] | 40 | * 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] | 41 | * the kCached_Flag should be specified to make the device responsible for unlocking |
| 42 | * the surface when it is released. |
bsalomon@google.com | 123ac1d | 2013-03-28 19:18:12 +0000 | [diff] [blame] | 43 | */ |
commit-bot@chromium.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 44 | static SkGpuDevice* Create(GrSurface* surface, unsigned flags = 0); |
bsalomon@google.com | 123ac1d | 2013-03-28 19:18:12 +0000 | [diff] [blame] | 45 | |
bsalomon@google.com | 2e7b43d | 2011-01-18 20:57:22 +0000 | [diff] [blame] | 46 | /** |
reed@google.com | af951c9 | 2011-06-16 19:10:39 +0000 | [diff] [blame] | 47 | * 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] | 48 | * 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.com | af951c9 | 2011-06-16 19:10:39 +0000 | [diff] [blame] | 54 | /** |
reed@google.com | 4469938 | 2013-10-31 17:28:30 +0000 | [diff] [blame] | 55 | * DEPRECATED -- need to make this private, call Create(surface) |
reed@google.com | af951c9 | 2011-06-16 19:10:39 +0000 | [diff] [blame] | 56 | * New device that will render to the specified renderTarget. |
| 57 | */ |
commit-bot@chromium.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 58 | SkGpuDevice(GrContext*, GrRenderTarget*, unsigned flags = 0); |
bsalomon@google.com | 2e7b43d | 2011-01-18 20:57:22 +0000 | [diff] [blame] | 59 | |
| 60 | /** |
reed@google.com | 4469938 | 2013-10-31 17:28:30 +0000 | [diff] [blame] | 61 | * DEPRECATED -- need to make this private, call Create(surface) |
bsalomon@google.com | f9046fe | 2011-06-17 15:10:21 +0000 | [diff] [blame] | 62 | * 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.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 66 | SkGpuDevice(GrContext*, GrTexture*, unsigned flags = 0); |
bsalomon@google.com | f9046fe | 2011-06-17 15:10:21 +0000 | [diff] [blame] | 67 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 68 | virtual ~SkGpuDevice(); |
reed@google.com | 7b201d2 | 2011-01-11 18:59:23 +0000 | [diff] [blame] | 69 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 70 | GrContext* context() const { return fContext; } |
| 71 | |
commit-bot@chromium.org | b8d00db | 2013-06-26 19:18:23 +0000 | [diff] [blame] | 72 | virtual GrRenderTarget* accessRenderTarget() SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 73 | |
reed | f252f64 | 2014-06-14 04:24:56 -0700 | [diff] [blame] | 74 | virtual SkImageInfo imageInfo() const SK_OVERRIDE { |
| 75 | return fRenderTarget ? fRenderTarget->info() : SkImageInfo::MakeUnknown(); |
robertphillips@google.com | 07f81a5 | 2013-09-17 12:26:23 +0000 | [diff] [blame] | 76 | } |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 77 | |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 78 | virtual void clear(SkColor color) SK_OVERRIDE; |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 79 | virtual void drawPaint(const SkDraw&, const SkPaint& paint) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 80 | virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, size_t count, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 81 | const SkPoint[], const SkPaint& paint) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 82 | virtual void drawRect(const SkDraw&, const SkRect& r, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 83 | const SkPaint& paint) SK_OVERRIDE; |
commit-bot@chromium.org | f2bfd54 | 2013-04-25 15:27:00 +0000 | [diff] [blame] | 84 | virtual void drawRRect(const SkDraw&, const SkRRect& r, |
| 85 | const SkPaint& paint) SK_OVERRIDE; |
commit-bot@chromium.org | 0a09d71 | 2014-04-09 21:26:11 +0000 | [diff] [blame] | 86 | virtual void drawDRRect(const SkDraw& draw, const SkRRect& outer, |
| 87 | const SkRRect& inner, const SkPaint& paint) SK_OVERRIDE; |
jvanverth@google.com | 46d3d39 | 2013-01-22 13:34:01 +0000 | [diff] [blame] | 88 | virtual void drawOval(const SkDraw&, const SkRect& oval, |
| 89 | const SkPaint& paint) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 90 | virtual void drawPath(const SkDraw&, const SkPath& path, |
| 91 | const SkPaint& paint, const SkMatrix* prePathMatrix, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 92 | bool pathIsMutable) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 93 | virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 94 | const SkMatrix&, const SkPaint&) SK_OVERRIDE; |
reed@google.com | 33535f3 | 2012-09-25 15:37:50 +0000 | [diff] [blame] | 95 | virtual void drawBitmapRect(const SkDraw&, const SkBitmap&, |
| 96 | const SkRect* srcOrNull, const SkRect& dst, |
commit-bot@chromium.org | eed779d | 2013-08-16 10:24:37 +0000 | [diff] [blame] | 97 | const SkPaint& paint, |
| 98 | SkCanvas::DrawBitmapRectFlags flags) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 99 | virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap, |
| 100 | int x, int y, const SkPaint& paint); |
| 101 | virtual void drawText(const SkDraw&, const void* text, size_t len, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 102 | SkScalar x, SkScalar y, const SkPaint&) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 103 | virtual void drawPosText(const SkDraw&, const void* text, size_t len, |
| 104 | const SkScalar pos[], SkScalar constY, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 105 | int scalarsPerPos, const SkPaint&) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 106 | virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len, |
| 107 | const SkPath& path, const SkMatrix* matrix, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 108 | const SkPaint&) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 109 | virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount, |
| 110 | const SkPoint verts[], const SkPoint texs[], |
| 111 | const SkColor colors[], SkXfermode* xmode, |
| 112 | const uint16_t indices[], int indexCount, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 113 | const SkPaint&) SK_OVERRIDE; |
robertphillips@google.com | 1f2f338 | 2013-08-29 11:54:56 +0000 | [diff] [blame] | 114 | virtual void drawDevice(const SkDraw&, SkBaseDevice*, int x, int y, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 115 | const SkPaint&) SK_OVERRIDE; |
| 116 | virtual bool filterTextFlags(const SkPaint&, TextFlags*) SK_OVERRIDE; |
reed@google.com | 7b201d2 | 2011-01-11 18:59:23 +0000 | [diff] [blame] | 117 | |
robertphillips@google.com | 1f2f338 | 2013-08-29 11:54:56 +0000 | [diff] [blame] | 118 | virtual void flush() SK_OVERRIDE; |
reed@google.com | 7b201d2 | 2011-01-11 18:59:23 +0000 | [diff] [blame] | 119 | |
robertphillips@google.com | 40a1ae4 | 2012-07-13 15:36:15 +0000 | [diff] [blame] | 120 | virtual void onAttachToCanvas(SkCanvas* canvas) SK_OVERRIDE; |
| 121 | virtual void onDetachFromCanvas() SK_OVERRIDE; |
| 122 | |
senorblanco@chromium.org | b7b7eb3 | 2014-03-19 18:24:04 +0000 | [diff] [blame] | 123 | virtual const SkBitmap& onAccessBitmap() SK_OVERRIDE; |
| 124 | |
reed@google.com | 7b201d2 | 2011-01-11 18:59:23 +0000 | [diff] [blame] | 125 | /** |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 126 | * Make's this device's rendertarget current in the underlying 3D API. |
| 127 | * Also implicitly flushes. |
| 128 | */ |
| 129 | virtual void makeRenderTargetCurrent(); |
| 130 | |
commit-bot@chromium.org | ae761f7 | 2014-02-05 22:32:02 +0000 | [diff] [blame] | 131 | virtual bool canHandleImageFilter(const SkImageFilter*) SK_OVERRIDE; |
senorblanco@chromium.org | 4cb543d | 2014-03-14 15:44:01 +0000 | [diff] [blame] | 132 | virtual bool filterImage(const SkImageFilter*, const SkBitmap&, |
| 133 | const SkImageFilter::Context&, |
reed@google.com | 8926b16 | 2012-03-23 15:36:36 +0000 | [diff] [blame] | 134 | SkBitmap*, SkIPoint*) SK_OVERRIDE; |
vandebo@chromium.org | 74b4619 | 2012-01-28 01:45:11 +0000 | [diff] [blame] | 135 | |
bsalomon@google.com | 84405e0 | 2012-03-05 19:57:21 +0000 | [diff] [blame] | 136 | class SkAutoCachedTexture; // used internally |
| 137 | |
commit-bot@chromium.org | 145d1c0 | 2014-03-16 19:46:36 +0000 | [diff] [blame] | 138 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 139 | protected: |
commit-bot@chromium.org | a713f9c | 2014-03-17 21:31:26 +0000 | [diff] [blame] | 140 | 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] | 141 | virtual bool onWritePixels(const SkImageInfo&, const void*, size_t, int, int) SK_OVERRIDE; |
bsalomon@google.com | c698097 | 2011-11-02 19:57:21 +0000 | [diff] [blame] | 142 | |
commit-bot@chromium.org | 145d1c0 | 2014-03-16 19:46:36 +0000 | [diff] [blame] | 143 | /** PRIVATE / EXPERIMENTAL -- do not call */ |
robertphillips | 9b14f26 | 2014-06-04 05:40:44 -0700 | [diff] [blame] | 144 | virtual void EXPERIMENTAL_optimize(const SkPicture* picture) SK_OVERRIDE; |
commit-bot@chromium.org | 145d1c0 | 2014-03-16 19:46:36 +0000 | [diff] [blame] | 145 | /** PRIVATE / EXPERIMENTAL -- do not call */ |
robertphillips | 9b14f26 | 2014-06-04 05:40:44 -0700 | [diff] [blame] | 146 | virtual bool EXPERIMENTAL_drawPicture(SkCanvas* canvas, const SkPicture* picture) SK_OVERRIDE; |
commit-bot@chromium.org | 145d1c0 | 2014-03-16 19:46:36 +0000 | [diff] [blame] | 147 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 148 | private: |
| 149 | GrContext* fContext; |
bsalomon@google.com | 5782d71 | 2011-01-21 21:03:59 +0000 | [diff] [blame] | 150 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 151 | GrSkDrawProcs* fDrawProcs; |
| 152 | |
robertphillips@google.com | 641f8b1 | 2012-07-31 19:15:58 +0000 | [diff] [blame] | 153 | GrClipData fClipData; |
robertphillips@google.com | 40a1ae4 | 2012-07-13 15:36:15 +0000 | [diff] [blame] | 154 | |
commit-bot@chromium.org | cbbc481 | 2014-01-30 22:05:47 +0000 | [diff] [blame] | 155 | GrTextContext* fMainTextContext; |
| 156 | GrTextContext* fFallbackTextContext; |
commit-bot@chromium.org | cc40f06 | 2014-01-24 14:38:27 +0000 | [diff] [blame] | 157 | |
bsalomon@google.com | a6926b1 | 2012-10-10 15:25:50 +0000 | [diff] [blame] | 158 | // state for our render-target |
bsalomon@google.com | 50398bf | 2011-07-26 20:45:30 +0000 | [diff] [blame] | 159 | GrRenderTarget* fRenderTarget; |
| 160 | bool fNeedClear; |
reed@google.com | 7b201d2 | 2011-01-11 18:59:23 +0000 | [diff] [blame] | 161 | |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 162 | // remove when our clients don't rely on accessBitmap() |
| 163 | SkBitmap fLegacyBitmap; |
| 164 | |
bsalomon@google.com | f9046fe | 2011-06-17 15:10:21 +0000 | [diff] [blame] | 165 | // called from rt and tex cons |
commit-bot@chromium.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 166 | void initFromRenderTarget(GrContext*, GrRenderTarget*, unsigned flags); |
bsalomon@google.com | 06cd732 | 2012-03-30 18:45:35 +0000 | [diff] [blame] | 167 | |
commit-bot@chromium.org | 15a1405 | 2014-02-16 00:59:25 +0000 | [diff] [blame] | 168 | virtual SkBaseDevice* onCreateDevice(const SkImageInfo&, Usage) SK_OVERRIDE; |
bsalomon@google.com | e97f085 | 2011-06-17 13:10:25 +0000 | [diff] [blame] | 169 | |
reed@google.com | 76f10a3 | 2014-02-05 15:32:21 +0000 | [diff] [blame] | 170 | virtual SkSurface* newSurface(const SkImageInfo&) SK_OVERRIDE; |
| 171 | |
senorblanco | be129b2 | 2014-08-08 07:14:35 -0700 | [diff] [blame^] | 172 | virtual SkImageFilter::Cache* getImageFilterCache() SK_OVERRIDE; |
senorblanco | 55b6d8b | 2014-07-30 11:26:46 -0700 | [diff] [blame] | 173 | |
bsalomon@google.com | a99226e | 2012-10-12 15:01:38 +0000 | [diff] [blame] | 174 | // sets the render target, clip, and matrix on GrContext. Use forceIdenity to override |
| 175 | // SkDraw's matrix and draw in device coords. |
| 176 | void prepareDraw(const SkDraw&, bool forceIdentity); |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 177 | |
| 178 | /** |
| 179 | * Implementation for both drawBitmap and drawBitmapRect. |
| 180 | */ |
skia.committer@gmail.com | 22b460c | 2012-09-29 02:01:02 +0000 | [diff] [blame] | 181 | void drawBitmapCommon(const SkDraw&, |
robertphillips@google.com | bac6b05 | 2012-09-28 18:06:49 +0000 | [diff] [blame] | 182 | const SkBitmap& bitmap, |
| 183 | const SkRect* srcRectPtr, |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 184 | const SkSize* dstSizePtr, // ignored iff srcRectPtr == NULL |
commit-bot@chromium.org | eed779d | 2013-08-16 10:24:37 +0000 | [diff] [blame] | 185 | const SkPaint&, |
| 186 | SkCanvas::DrawBitmapRectFlags flags); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 187 | |
bsalomon@google.com | f4a9c82 | 2012-03-16 14:02:46 +0000 | [diff] [blame] | 188 | /** |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 189 | * 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] | 190 | * 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] | 191 | */ |
commit-bot@chromium.org | 7edad87 | 2013-10-25 14:58:12 +0000 | [diff] [blame] | 192 | |
| 193 | // 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] | 194 | bool shouldTileBitmap(const SkBitmap& bitmap, |
| 195 | const GrTextureParams& sampler, |
bsalomon@google.com | af562b4 | 2013-10-24 17:52:07 +0000 | [diff] [blame] | 196 | const SkRect* srcRectPtr, |
| 197 | int maxTileSize, |
commit-bot@chromium.org | 7edad87 | 2013-10-25 14:58:12 +0000 | [diff] [blame] | 198 | int* tileSize, |
| 199 | SkIRect* clippedSrcRect) const; |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 200 | void internalDrawBitmap(const SkBitmap&, |
| 201 | const SkRect&, |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 202 | const GrTextureParams& params, |
commit-bot@chromium.org | eed779d | 2013-08-16 10:24:37 +0000 | [diff] [blame] | 203 | const SkPaint& paint, |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 204 | SkCanvas::DrawBitmapRectFlags flags, |
commit-bot@chromium.org | a17773f | 2014-05-09 13:53:38 +0000 | [diff] [blame] | 205 | bool bicubic, |
| 206 | bool needsTextureDomain); |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 207 | void drawTiledBitmap(const SkBitmap& bitmap, |
| 208 | const SkRect& srcRect, |
commit-bot@chromium.org | 7edad87 | 2013-10-25 14:58:12 +0000 | [diff] [blame] | 209 | const SkIRect& clippedSrcRect, |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 210 | const GrTextureParams& params, |
commit-bot@chromium.org | eed779d | 2013-08-16 10:24:37 +0000 | [diff] [blame] | 211 | const SkPaint& paint, |
bsalomon@google.com | af562b4 | 2013-10-24 17:52:07 +0000 | [diff] [blame] | 212 | SkCanvas::DrawBitmapRectFlags flags, |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 213 | int tileSize, |
| 214 | bool bicubic); |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 215 | |
commit-bot@chromium.org | 628ed0b | 2014-05-19 14:32:49 +0000 | [diff] [blame] | 216 | bool drawDashLine(const SkPoint pts[2], const SkPaint& paint); |
| 217 | |
commit-bot@chromium.org | 145d1c0 | 2014-03-16 19:46:36 +0000 | [diff] [blame] | 218 | static SkPicture::AccelData::Key ComputeAccelDataKey(); |
| 219 | |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 220 | typedef SkBaseDevice INHERITED; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 221 | }; |
| 222 | |
| 223 | #endif |