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 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 9 | #ifndef SkGpuDevice_DEFINED |
| 10 | #define SkGpuDevice_DEFINED |
| 11 | |
| 12 | #include "SkGr.h" |
reed@google.com | af951c9 | 2011-06-16 19:10:39 +0000 | [diff] [blame] | 13 | #include "SkBitmap.h" |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 14 | #include "SkDevice.h" |
commit-bot@chromium.org | 145d1c0 | 2014-03-16 19:46:36 +0000 | [diff] [blame] | 15 | #include "SkPicture.h" |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 16 | #include "SkRegion.h" |
bsalomon | afe3005 | 2015-01-16 07:32:33 -0800 | [diff] [blame] | 17 | #include "SkSurface.h" |
bsalomon@google.com | 50398bf | 2011-07-26 20:45:30 +0000 | [diff] [blame] | 18 | #include "GrContext.h" |
bsalomon | afbf2d6 | 2014-09-30 12:18:44 -0700 | [diff] [blame] | 19 | #include "GrSurfacePriv.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 | |
robertphillips | 64bf767 | 2014-08-21 13:07:35 -0700 | [diff] [blame] | 24 | class GrAccelData; |
| 25 | struct GrCachedLayer; |
commit-bot@chromium.org | cbbc481 | 2014-01-30 22:05:47 +0000 | [diff] [blame] | 26 | class GrTextContext; |
commit-bot@chromium.org | ddf2bfb | 2014-01-30 16:41:23 +0000 | [diff] [blame] | 27 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 28 | /** |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 29 | * 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] | 30 | * canvas. |
| 31 | */ |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 32 | class SK_API SkGpuDevice : public SkBaseDevice { |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 33 | public: |
commit-bot@chromium.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 34 | enum Flags { |
skia.committer@gmail.com | 99e5b52 | 2014-03-21 03:02:42 +0000 | [diff] [blame] | 35 | kNeedClear_Flag = 1 << 0, //!< Surface requires an initial clear |
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 | /** |
bsalomon | afe3005 | 2015-01-16 07:32:33 -0800 | [diff] [blame] | 39 | * Creates an SkGpuDevice from a GrRenderTarget. |
bsalomon@google.com | 123ac1d | 2013-03-28 19:18:12 +0000 | [diff] [blame] | 40 | */ |
bsalomon | afe3005 | 2015-01-16 07:32:33 -0800 | [diff] [blame] | 41 | static SkGpuDevice* Create(GrRenderTarget* target, const SkSurfaceProps*, unsigned flags = 0); |
bsalomon@google.com | 123ac1d | 2013-03-28 19:18:12 +0000 | [diff] [blame] | 42 | |
bsalomon@google.com | 2e7b43d | 2011-01-18 20:57:22 +0000 | [diff] [blame] | 43 | /** |
bsalomon | afe3005 | 2015-01-16 07:32:33 -0800 | [diff] [blame] | 44 | * New device that will create an offscreen renderTarget based on the ImageInfo and |
| 45 | * sampleCount. The Budgeted param controls whether the device's backing store counts against |
| 46 | * the resource cache budget. On failure, returns NULL. |
commit-bot@chromium.org | 15a1405 | 2014-02-16 00:59:25 +0000 | [diff] [blame] | 47 | */ |
bsalomon | afe3005 | 2015-01-16 07:32:33 -0800 | [diff] [blame] | 48 | static SkGpuDevice* Create(GrContext*, SkSurface::Budgeted, const SkImageInfo&, |
| 49 | int sampleCount, const SkSurfaceProps*, unsigned flags = 0); |
commit-bot@chromium.org | 15a1405 | 2014-02-16 00:59:25 +0000 | [diff] [blame] | 50 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 51 | virtual ~SkGpuDevice(); |
reed@google.com | 7b201d2 | 2011-01-11 18:59:23 +0000 | [diff] [blame] | 52 | |
reed | b2db898 | 2014-11-13 12:41:02 -0800 | [diff] [blame] | 53 | SkGpuDevice* cloneDevice(const SkSurfaceProps& props) { |
reed | 76033be | 2015-03-14 10:54:31 -0700 | [diff] [blame] | 54 | SkBaseDevice* dev = this->onCreateDevice(CreateInfo(this->imageInfo(), kPossible_TileUsage, |
| 55 | props.pixelGeometry()), |
| 56 | NULL); |
reed | b2db898 | 2014-11-13 12:41:02 -0800 | [diff] [blame] | 57 | return static_cast<SkGpuDevice*>(dev); |
| 58 | } |
| 59 | |
joshualitt | 5f5a8d7 | 2015-02-25 14:09:45 -0800 | [diff] [blame] | 60 | GrContext* context() const { return fContext; } |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 61 | |
reed | 8eddfb5 | 2014-12-04 07:50:14 -0800 | [diff] [blame] | 62 | // set all pixels to 0 |
| 63 | void clearAll(); |
| 64 | |
kkinnunen | abcfab4 | 2015-02-22 22:53:44 -0800 | [diff] [blame] | 65 | void replaceRenderTarget(bool shouldRetainContent); |
| 66 | |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 67 | GrRenderTarget* accessRenderTarget() SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 68 | |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 69 | SkImageInfo imageInfo() const SK_OVERRIDE { |
bsalomon | afbf2d6 | 2014-09-30 12:18:44 -0700 | [diff] [blame] | 70 | return fRenderTarget ? fRenderTarget->surfacePriv().info() : SkImageInfo::MakeUnknown(); |
robertphillips@google.com | 07f81a5 | 2013-09-17 12:26:23 +0000 | [diff] [blame] | 71 | } |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 72 | |
bsalomon | afe3005 | 2015-01-16 07:32:33 -0800 | [diff] [blame] | 73 | const SkSurfaceProps& surfaceProps() const { return fSurfaceProps; } |
| 74 | |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 75 | 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, |
tfarina | 912ed6e | 2014-12-14 15:20:10 -0800 | [diff] [blame] | 96 | int x, int y, const SkPaint& paint) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 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; |
joshualitt | 9c32818 | 2015-03-23 08:13:04 -0700 | [diff] [blame^] | 102 | virtual void drawTextBlob(const SkDraw&, const SkTextBlob*, SkScalar x, SkScalar y, |
| 103 | const SkPaint& paint, SkDrawFilter* drawFilter) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 104 | virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount, |
| 105 | const SkPoint verts[], const SkPoint texs[], |
| 106 | const SkColor colors[], SkXfermode* xmode, |
| 107 | const uint16_t indices[], int indexCount, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 108 | const SkPaint&) SK_OVERRIDE; |
robertphillips@google.com | 1f2f338 | 2013-08-29 11:54:56 +0000 | [diff] [blame] | 109 | virtual void drawDevice(const SkDraw&, SkBaseDevice*, int x, int y, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 110 | const SkPaint&) SK_OVERRIDE; |
reed@google.com | 7b201d2 | 2011-01-11 18:59:23 +0000 | [diff] [blame] | 111 | |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 112 | void flush() SK_OVERRIDE; |
reed@google.com | 7b201d2 | 2011-01-11 18:59:23 +0000 | [diff] [blame] | 113 | |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 114 | void onAttachToCanvas(SkCanvas* canvas) SK_OVERRIDE; |
| 115 | void onDetachFromCanvas() SK_OVERRIDE; |
robertphillips@google.com | 40a1ae4 | 2012-07-13 15:36:15 +0000 | [diff] [blame] | 116 | |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 117 | const SkBitmap& onAccessBitmap() SK_OVERRIDE; |
senorblanco@chromium.org | b7b7eb3 | 2014-03-19 18:24:04 +0000 | [diff] [blame] | 118 | |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 119 | bool canHandleImageFilter(const SkImageFilter*) SK_OVERRIDE; |
senorblanco@chromium.org | 4cb543d | 2014-03-14 15:44:01 +0000 | [diff] [blame] | 120 | virtual bool filterImage(const SkImageFilter*, const SkBitmap&, |
| 121 | const SkImageFilter::Context&, |
reed@google.com | 8926b16 | 2012-03-23 15:36:36 +0000 | [diff] [blame] | 122 | SkBitmap*, SkIPoint*) SK_OVERRIDE; |
vandebo@chromium.org | 74b4619 | 2012-01-28 01:45:11 +0000 | [diff] [blame] | 123 | |
robertphillips | 7b9e8a4 | 2014-12-11 08:20:31 -0800 | [diff] [blame] | 124 | bool filterTexture(GrContext*, GrTexture*, const SkImageFilter*, |
| 125 | const SkImageFilter::Context&, |
| 126 | SkBitmap* result, SkIPoint* offset); |
| 127 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 128 | protected: |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 129 | bool onReadPixels(const SkImageInfo&, void*, size_t, int, int) SK_OVERRIDE; |
| 130 | bool onWritePixels(const SkImageInfo&, const void*, size_t, int, int) SK_OVERRIDE; |
reed | b2db898 | 2014-11-13 12:41:02 -0800 | [diff] [blame] | 131 | bool onShouldDisableLCD(const SkPaint&) const SK_OVERRIDE; |
bsalomon@google.com | c698097 | 2011-11-02 19:57:21 +0000 | [diff] [blame] | 132 | |
commit-bot@chromium.org | 145d1c0 | 2014-03-16 19:46:36 +0000 | [diff] [blame] | 133 | /** PRIVATE / EXPERIMENTAL -- do not call */ |
reed | d5fa1a4 | 2014-08-09 11:08:05 -0700 | [diff] [blame] | 134 | virtual bool EXPERIMENTAL_drawPicture(SkCanvas* canvas, const SkPicture* picture, |
| 135 | const SkMatrix*, const SkPaint*) SK_OVERRIDE; |
commit-bot@chromium.org | 145d1c0 | 2014-03-16 19:46:36 +0000 | [diff] [blame] | 136 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 137 | private: |
joshualitt | 44701df | 2015-02-23 14:44:57 -0800 | [diff] [blame] | 138 | GrContext* fContext; |
| 139 | GrSkDrawProcs* fDrawProcs; |
| 140 | SkAutoTUnref<const SkClipStack> fClipStack; |
| 141 | SkIPoint fClipOrigin; |
joshualitt | 570d2f8 | 2015-02-25 13:19:48 -0800 | [diff] [blame] | 142 | GrClip fClip; |
joshualitt | 44701df | 2015-02-23 14:44:57 -0800 | [diff] [blame] | 143 | GrTextContext* fTextContext; |
| 144 | SkSurfaceProps fSurfaceProps; |
| 145 | GrRenderTarget* fRenderTarget; |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 146 | // remove when our clients don't rely on accessBitmap() |
joshualitt | 44701df | 2015-02-23 14:44:57 -0800 | [diff] [blame] | 147 | SkBitmap fLegacyBitmap; |
| 148 | bool fNeedClear; |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 149 | |
bsalomon | afe3005 | 2015-01-16 07:32:33 -0800 | [diff] [blame] | 150 | SkGpuDevice(GrRenderTarget*, const SkSurfaceProps*, unsigned flags); |
bsalomon@google.com | 06cd732 | 2012-03-30 18:45:35 +0000 | [diff] [blame] | 151 | |
reed | 76033be | 2015-03-14 10:54:31 -0700 | [diff] [blame] | 152 | SkBaseDevice* onCreateDevice(const CreateInfo&, const SkPaint*) SK_OVERRIDE; |
bsalomon@google.com | e97f085 | 2011-06-17 13:10:25 +0000 | [diff] [blame] | 153 | |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 154 | SkSurface* newSurface(const SkImageInfo&, const SkSurfaceProps&) SK_OVERRIDE; |
reed@google.com | 76f10a3 | 2014-02-05 15:32:21 +0000 | [diff] [blame] | 155 | |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 156 | SkImageFilter::Cache* getImageFilterCache() SK_OVERRIDE; |
reed | 841010f | 2014-09-10 07:23:32 -0700 | [diff] [blame] | 157 | |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 158 | bool forceConservativeRasterClip() const SK_OVERRIDE { return true; } |
senorblanco | 55b6d8b | 2014-07-30 11:26:46 -0700 | [diff] [blame] | 159 | |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 160 | // sets the render target and clip on context |
| 161 | void prepareDraw(const SkDraw&); |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 162 | |
| 163 | /** |
| 164 | * Implementation for both drawBitmap and drawBitmapRect. |
| 165 | */ |
skia.committer@gmail.com | 22b460c | 2012-09-29 02:01:02 +0000 | [diff] [blame] | 166 | void drawBitmapCommon(const SkDraw&, |
robertphillips@google.com | bac6b05 | 2012-09-28 18:06:49 +0000 | [diff] [blame] | 167 | const SkBitmap& bitmap, |
| 168 | const SkRect* srcRectPtr, |
commit-bot@chromium.org | a7d89c8 | 2014-01-13 14:47:00 +0000 | [diff] [blame] | 169 | const SkSize* dstSizePtr, // ignored iff srcRectPtr == NULL |
commit-bot@chromium.org | eed779d | 2013-08-16 10:24:37 +0000 | [diff] [blame] | 170 | const SkPaint&, |
| 171 | SkCanvas::DrawBitmapRectFlags flags); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 172 | |
bsalomon@google.com | f4a9c82 | 2012-03-16 14:02:46 +0000 | [diff] [blame] | 173 | /** |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 174 | * 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] | 175 | * 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] | 176 | */ |
commit-bot@chromium.org | 7edad87 | 2013-10-25 14:58:12 +0000 | [diff] [blame] | 177 | |
| 178 | // 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] | 179 | bool shouldTileBitmap(const SkBitmap& bitmap, |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 180 | const SkMatrix& viewMatrix, |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 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&, |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 187 | const SkMatrix& viewMatrix, |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 188 | const SkRect&, |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 189 | const GrTextureParams& params, |
commit-bot@chromium.org | eed779d | 2013-08-16 10:24:37 +0000 | [diff] [blame] | 190 | const SkPaint& paint, |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 191 | SkCanvas::DrawBitmapRectFlags flags, |
commit-bot@chromium.org | a17773f | 2014-05-09 13:53:38 +0000 | [diff] [blame] | 192 | bool bicubic, |
| 193 | bool needsTextureDomain); |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 194 | void drawTiledBitmap(const SkBitmap& bitmap, |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 195 | const SkMatrix& viewMatrix, |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 196 | const SkRect& srcRect, |
commit-bot@chromium.org | 7edad87 | 2013-10-25 14:58:12 +0000 | [diff] [blame] | 197 | const SkIRect& clippedSrcRect, |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 198 | const GrTextureParams& params, |
commit-bot@chromium.org | eed779d | 2013-08-16 10:24:37 +0000 | [diff] [blame] | 199 | const SkPaint& paint, |
bsalomon@google.com | af562b4 | 2013-10-24 17:52:07 +0000 | [diff] [blame] | 200 | SkCanvas::DrawBitmapRectFlags flags, |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 201 | int tileSize, |
| 202 | bool bicubic); |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 203 | |
joshualitt | 5efb8b8 | 2015-03-18 11:49:12 -0700 | [diff] [blame] | 204 | void internalDrawPath(const SkPath& origSrcPath, const SkPaint& paint, |
| 205 | const SkMatrix& origViewMatrix, const SkMatrix* prePathMatrix, |
| 206 | const SkIRect& clipBounds, bool pathIsMutable); |
| 207 | |
commit-bot@chromium.org | 628ed0b | 2014-05-19 14:32:49 +0000 | [diff] [blame] | 208 | bool drawDashLine(const SkPoint pts[2], const SkPaint& paint); |
| 209 | |
commit-bot@chromium.org | 145d1c0 | 2014-03-16 19:46:36 +0000 | [diff] [blame] | 210 | static SkPicture::AccelData::Key ComputeAccelDataKey(); |
| 211 | |
kkinnunen | abcfab4 | 2015-02-22 22:53:44 -0800 | [diff] [blame] | 212 | static GrRenderTarget* CreateRenderTarget(GrContext*, SkSurface::Budgeted, const SkImageInfo&, |
| 213 | int sampleCount); |
| 214 | |
joshualitt | 6e8cd96 | 2015-03-20 10:30:14 -0700 | [diff] [blame] | 215 | friend class GrTextContext; |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 216 | typedef SkBaseDevice INHERITED; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 217 | }; |
| 218 | |
| 219 | #endif |