reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 1 | /* |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 2 | * Copyright 2010 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 8 | #ifndef SkGpuDevice_DEFINED |
| 9 | #define SkGpuDevice_DEFINED |
| 10 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 11 | #include "include/core/SkBitmap.h" |
| 12 | #include "include/core/SkPicture.h" |
| 13 | #include "include/core/SkRegion.h" |
| 14 | #include "include/core/SkSurface.h" |
| 15 | #include "include/gpu/GrContext.h" |
| 16 | #include "include/gpu/GrTypes.h" |
| 17 | #include "src/core/SkClipStackDevice.h" |
| 18 | #include "src/gpu/GrClipStackClip.h" |
| 19 | #include "src/gpu/GrContextPriv.h" |
| 20 | #include "src/gpu/GrRenderTargetContext.h" |
| 21 | #include "src/gpu/SkGr.h" |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 22 | |
robertphillips | 64bf767 | 2014-08-21 13:07:35 -0700 | [diff] [blame] | 23 | class GrAccelData; |
Brian Salomon | 3416969 | 2017-08-28 15:32:01 -0400 | [diff] [blame] | 24 | class GrTextureMaker; |
bsalomon | b1b0199 | 2015-11-18 10:56:08 -0800 | [diff] [blame] | 25 | class GrTextureProducer; |
robertphillips | 64bf767 | 2014-08-21 13:07:35 -0700 | [diff] [blame] | 26 | struct GrCachedLayer; |
commit-bot@chromium.org | ddf2bfb | 2014-01-30 16:41:23 +0000 | [diff] [blame] | 27 | |
robertphillips | 970587b | 2016-07-14 14:12:55 -0700 | [diff] [blame] | 28 | class SkSpecialImage; |
| 29 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 30 | /** |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 31 | * 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] | 32 | * canvas. |
| 33 | */ |
Mike Reed | 57c2b8b | 2017-12-31 15:23:54 -0500 | [diff] [blame] | 34 | class SkGpuDevice : public SkClipStackDevice { |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 35 | public: |
bsalomon | 74f681d | 2015-06-23 14:38:48 -0700 | [diff] [blame] | 36 | enum InitContents { |
| 37 | kClear_InitContents, |
| 38 | kUninit_InitContents |
commit-bot@chromium.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 39 | }; |
bsalomon@google.com | 123ac1d | 2013-03-28 19:18:12 +0000 | [diff] [blame] | 40 | |
| 41 | /** |
Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 42 | * Creates an SkGpuDevice from a GrRenderTargetContext whose backing width/height is |
senorblanco | d0d37ca | 2015-04-02 04:54:56 -0700 | [diff] [blame] | 43 | * different than its actual width/height (e.g., approx-match scratch texture). |
| 44 | */ |
Brian Salomon | bf6b979 | 2019-08-21 09:38:10 -0400 | [diff] [blame] | 45 | static sk_sp<SkGpuDevice> Make( |
| 46 | GrContext*, std::unique_ptr<GrRenderTargetContext>, InitContents); |
senorblanco | d0d37ca | 2015-04-02 04:54:56 -0700 | [diff] [blame] | 47 | |
| 48 | /** |
bsalomon | afe3005 | 2015-01-16 07:32:33 -0800 | [diff] [blame] | 49 | * New device that will create an offscreen renderTarget based on the ImageInfo and |
Greg Daniel | e252f08 | 2017-10-23 16:05:23 -0400 | [diff] [blame] | 50 | * sampleCount. The mipMapped flag tells the gpu to create the underlying render target with |
| 51 | * mips. The Budgeted param controls whether the device's backing store counts against the |
| 52 | * resource cache budget. On failure, returns nullptr. |
Robert Phillips | 0ae6faa | 2017-03-21 16:22:00 -0400 | [diff] [blame] | 53 | * This entry point creates a kExact backing store. It is used when creating SkGpuDevices |
| 54 | * for SkSurfaces. |
commit-bot@chromium.org | 15a1405 | 2014-02-16 00:59:25 +0000 | [diff] [blame] | 55 | */ |
robertphillips | 24e9128 | 2016-04-29 06:46:36 -0700 | [diff] [blame] | 56 | static sk_sp<SkGpuDevice> Make(GrContext*, SkBudgeted, const SkImageInfo&, |
Greg Daniel | e252f08 | 2017-10-23 16:05:23 -0400 | [diff] [blame] | 57 | int sampleCount, GrSurfaceOrigin, const SkSurfaceProps*, |
| 58 | GrMipMapped mipMapped, InitContents); |
commit-bot@chromium.org | 15a1405 | 2014-02-16 00:59:25 +0000 | [diff] [blame] | 59 | |
joshualitt | 06dd0a8 | 2016-01-08 06:32:31 -0800 | [diff] [blame] | 60 | ~SkGpuDevice() override {} |
reed@google.com | 7b201d2 | 2011-01-11 18:59:23 +0000 | [diff] [blame] | 61 | |
Hal Canary | 144caf5 | 2016-11-07 17:57:18 -0500 | [diff] [blame] | 62 | GrContext* context() const override { return fContext.get(); } |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 63 | |
reed | 8eddfb5 | 2014-12-04 07:50:14 -0800 | [diff] [blame] | 64 | // set all pixels to 0 |
| 65 | void clearAll(); |
| 66 | |
Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 67 | void replaceRenderTargetContext(bool shouldRetainContent); |
Brian Salomon | bf6b979 | 2019-08-21 09:38:10 -0400 | [diff] [blame] | 68 | void replaceRenderTargetContext(std::unique_ptr<GrRenderTargetContext>, |
| 69 | bool shouldRetainContent); |
kkinnunen | abcfab4 | 2015-02-22 22:53:44 -0800 | [diff] [blame] | 70 | |
Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 71 | GrRenderTargetContext* accessRenderTargetContext() override; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 72 | |
Mike Reed | a136136 | 2017-03-07 09:37:29 -0500 | [diff] [blame] | 73 | void drawPaint(const SkPaint& paint) override; |
| 74 | void drawPoints(SkCanvas::PointMode mode, size_t count, const SkPoint[], |
bsalomon | dcb406c | 2016-08-22 14:48:36 -0700 | [diff] [blame] | 75 | const SkPaint& paint) override; |
Mike Reed | a136136 | 2017-03-07 09:37:29 -0500 | [diff] [blame] | 76 | void drawRect(const SkRect& r, const SkPaint& paint) override; |
| 77 | void drawRRect(const SkRRect& r, const SkPaint& paint) override; |
Robert Phillips | 137ca52 | 2018-08-15 10:14:33 -0400 | [diff] [blame] | 78 | void drawDRRect(const SkRRect& outer, const SkRRect& inner, const SkPaint& paint) override; |
Mike Reed | a136136 | 2017-03-07 09:37:29 -0500 | [diff] [blame] | 79 | void drawRegion(const SkRegion& r, const SkPaint& paint) override; |
| 80 | void drawOval(const SkRect& oval, const SkPaint& paint) override; |
| 81 | void drawArc(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle, |
bsalomon | dcb406c | 2016-08-22 14:48:36 -0700 | [diff] [blame] | 82 | bool useCenter, const SkPaint& paint) override; |
Robert Phillips | 137ca52 | 2018-08-15 10:14:33 -0400 | [diff] [blame] | 83 | void drawPath(const SkPath& path, const SkPaint& paint, bool pathIsMutable) override; |
Mike Reed | a136136 | 2017-03-07 09:37:29 -0500 | [diff] [blame] | 84 | void drawBitmapRect(const SkBitmap&, const SkRect* srcOrNull, const SkRect& dst, |
bsalomon | dcb406c | 2016-08-22 14:48:36 -0700 | [diff] [blame] | 85 | const SkPaint& paint, SkCanvas::SrcRectConstraint) override; |
Mike Reed | a136136 | 2017-03-07 09:37:29 -0500 | [diff] [blame] | 86 | void drawSprite(const SkBitmap& bitmap, int x, int y, |
bsalomon | dcb406c | 2016-08-22 14:48:36 -0700 | [diff] [blame] | 87 | const SkPaint& paint) override; |
Herb Derby | b935cf8 | 2018-07-26 16:54:18 -0400 | [diff] [blame] | 88 | void drawGlyphRunList(const SkGlyphRunList& glyphRunList) override; |
Ruiqi Mao | c97a339 | 2018-08-15 10:44:19 -0400 | [diff] [blame] | 89 | void drawVertices(const SkVertices*, const SkVertices::Bone bones[], int boneCount, SkBlendMode, |
Ruiqi Mao | f510149 | 2018-06-29 14:32:21 -0400 | [diff] [blame] | 90 | const SkPaint&) override; |
Mike Reed | 4204da2 | 2017-05-17 08:53:36 -0400 | [diff] [blame] | 91 | void drawShadow(const SkPath&, const SkDrawShadowRec&) override; |
Brian Osman | 4d92b89 | 2019-03-24 00:53:23 +0000 | [diff] [blame] | 92 | void drawAtlas(const SkImage* atlas, const SkRSXform[], const SkRect[], |
| 93 | const SkColor[], int count, SkBlendMode, const SkPaint&) override; |
Mike Reed | a136136 | 2017-03-07 09:37:29 -0500 | [diff] [blame] | 94 | void drawDevice(SkBaseDevice*, int x, int y, const SkPaint&) override; |
robertphillips | 970587b | 2016-07-14 14:12:55 -0700 | [diff] [blame] | 95 | |
Mike Reed | a136136 | 2017-03-07 09:37:29 -0500 | [diff] [blame] | 96 | void drawImageRect(const SkImage*, const SkRect* src, const SkRect& dst, |
reed | a5517e2 | 2015-07-14 10:54:12 -0700 | [diff] [blame] | 97 | const SkPaint&, SkCanvas::SrcRectConstraint) override; |
reed@google.com | 7b201d2 | 2011-01-11 18:59:23 +0000 | [diff] [blame] | 98 | |
Mike Reed | a136136 | 2017-03-07 09:37:29 -0500 | [diff] [blame] | 99 | void drawImageNine(const SkImage* image, const SkIRect& center, |
joshualitt | 33a5fce | 2015-11-18 13:28:51 -0800 | [diff] [blame] | 100 | const SkRect& dst, const SkPaint& paint) override; |
Mike Reed | a136136 | 2017-03-07 09:37:29 -0500 | [diff] [blame] | 101 | void drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center, |
joshualitt | 33a5fce | 2015-11-18 13:28:51 -0800 | [diff] [blame] | 102 | const SkRect& dst, const SkPaint& paint) override; |
| 103 | |
Mike Reed | a136136 | 2017-03-07 09:37:29 -0500 | [diff] [blame] | 104 | void drawImageLattice(const SkImage*, const SkCanvas::Lattice&, |
msarett | 10e3d9b | 2016-08-18 15:46:03 -0700 | [diff] [blame] | 105 | const SkRect& dst, const SkPaint&) override; |
Mike Reed | a136136 | 2017-03-07 09:37:29 -0500 | [diff] [blame] | 106 | void drawBitmapLattice(const SkBitmap&, const SkCanvas::Lattice&, |
msarett | 10e3d9b | 2016-08-18 15:46:03 -0700 | [diff] [blame] | 107 | const SkRect& dst, const SkPaint&) override; |
| 108 | |
Greg Daniel | 9ed1a2c | 2018-10-18 12:43:25 -0400 | [diff] [blame] | 109 | void drawDrawable(SkDrawable*, const SkMatrix*, SkCanvas* canvas) override; |
| 110 | |
Florin Malita | 53f77bd | 2017-04-28 13:48:37 -0400 | [diff] [blame] | 111 | void drawSpecial(SkSpecialImage*, int left, int top, const SkPaint& paint, |
| 112 | SkImage*, const SkMatrix&) override; |
Michael Ludwig | 390f0cc | 2019-03-19 09:16:38 -0400 | [diff] [blame] | 113 | |
Michael Ludwig | a595f86 | 2019-08-27 15:25:49 -0400 | [diff] [blame] | 114 | void drawEdgeAAQuad(const SkRect& rect, const SkPoint clip[4], SkCanvas::QuadAAFlags aaFlags, |
| 115 | const SkColor4f& color, SkBlendMode mode) override; |
Michael Ludwig | 390f0cc | 2019-03-19 09:16:38 -0400 | [diff] [blame] | 116 | void drawEdgeAAImageSet(const SkCanvas::ImageSetEntry[], int count, const SkPoint dstClips[], |
| 117 | const SkMatrix[], const SkPaint&, SkCanvas::SrcRectConstraint) override; |
| 118 | |
robertphillips | 6451a0c | 2016-07-18 08:31:31 -0700 | [diff] [blame] | 119 | sk_sp<SkSpecialImage> makeSpecial(const SkBitmap&) override; |
reed | e51c356 | 2016-07-19 14:33:20 -0700 | [diff] [blame] | 120 | sk_sp<SkSpecialImage> makeSpecial(const SkImage*) override; |
Michael Ludwig | ac35212 | 2019-08-28 21:03:05 +0000 | [diff] [blame] | 121 | sk_sp<SkSpecialImage> snapSpecial(const SkIRect&, bool = false) override; |
robertphillips | 970587b | 2016-07-14 14:12:55 -0700 | [diff] [blame] | 122 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 123 | void flush() override; |
Greg Daniel | e6bfb7d | 2019-04-17 15:26:11 -0400 | [diff] [blame] | 124 | GrSemaphoresSubmitted flush(SkSurface::BackendSurfaceAccess access, const GrFlushInfo&); |
Greg Daniel | c64ee46 | 2017-06-15 16:59:49 -0400 | [diff] [blame] | 125 | bool wait(int numSemaphores, const GrBackendSemaphore* waitSemaphores); |
reed@google.com | 7b201d2 | 2011-01-11 18:59:23 +0000 | [diff] [blame] | 126 | |
reed | 41e010c | 2015-06-09 12:16:53 -0700 | [diff] [blame] | 127 | bool onAccessPixels(SkPixmap*) override; |
senorblanco@chromium.org | b7b7eb3 | 2014-03-19 18:24:04 +0000 | [diff] [blame] | 128 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 129 | protected: |
Mike Reed | 353196f | 2017-07-21 11:01:18 -0400 | [diff] [blame] | 130 | bool onReadPixels(const SkPixmap&, int, int) override; |
| 131 | bool onWritePixels(const SkPixmap&, int, int) override; |
bsalomon@google.com | c698097 | 2011-11-02 19:57:21 +0000 | [diff] [blame] | 132 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 133 | private: |
Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 134 | // We want these unreffed in RenderTargetContext, GrContext order. |
Brian Salomon | bf6b979 | 2019-08-21 09:38:10 -0400 | [diff] [blame] | 135 | sk_sp<GrContext> fContext; |
| 136 | std::unique_ptr<GrRenderTargetContext> fRenderTargetContext; |
bsalomon | 74f681d | 2015-06-23 14:38:48 -0700 | [diff] [blame] | 137 | |
| 138 | enum Flags { |
| 139 | kNeedClear_Flag = 1 << 0, //!< Surface requires an initial clear |
| 140 | kIsOpaque_Flag = 1 << 1, //!< Hint from client that rendering to this device will be |
| 141 | // opaque even if the config supports alpha. |
| 142 | }; |
| 143 | static bool CheckAlphaTypeAndGetFlags(const SkImageInfo* info, InitContents init, |
| 144 | unsigned* flags); |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 145 | |
Brian Salomon | bf6b979 | 2019-08-21 09:38:10 -0400 | [diff] [blame] | 146 | SkGpuDevice(GrContext*, std::unique_ptr<GrRenderTargetContext>, unsigned flags); |
bsalomon@google.com | 06cd732 | 2012-03-30 18:45:35 +0000 | [diff] [blame] | 147 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 148 | SkBaseDevice* onCreateDevice(const CreateInfo&, const SkPaint*) override; |
bsalomon@google.com | e97f085 | 2011-06-17 13:10:25 +0000 | [diff] [blame] | 149 | |
reed | e8f3062 | 2016-03-23 18:59:25 -0700 | [diff] [blame] | 150 | sk_sp<SkSurface> makeSurface(const SkImageInfo&, const SkSurfaceProps&) override; |
reed@google.com | 76f10a3 | 2014-02-05 15:32:21 +0000 | [diff] [blame] | 151 | |
senorblanco | 900c367 | 2016-04-27 11:31:23 -0700 | [diff] [blame] | 152 | SkImageFilterCache* getImageFilterCache() override; |
reed | 841010f | 2014-09-10 07:23:32 -0700 | [diff] [blame] | 153 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 154 | bool forceConservativeRasterClip() const override { return true; } |
senorblanco | 55b6d8b | 2014-07-30 11:26:46 -0700 | [diff] [blame] | 155 | |
Brian Salomon | 0166cfd | 2017-03-13 17:58:25 -0400 | [diff] [blame] | 156 | GrClipStackClip clip() const { return GrClipStackClip(&this->cs()); } |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 157 | |
Robert Phillips | 920d488 | 2019-03-04 15:16:44 -0500 | [diff] [blame] | 158 | const GrCaps* caps() const; |
Brian Salomon | c7fe0f7 | 2018-05-11 10:14:21 -0400 | [diff] [blame] | 159 | |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 160 | /** |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 161 | * 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] | 162 | * 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] | 163 | */ |
commit-bot@chromium.org | 7edad87 | 2013-10-25 14:58:12 +0000 | [diff] [blame] | 164 | |
| 165 | // The tileSize and clippedSrcRect will be valid only if true is returned. |
Brian Salomon | 2bbdcc4 | 2017-09-07 12:36:34 -0400 | [diff] [blame] | 166 | bool shouldTileImageID(uint32_t imageID, |
| 167 | const SkIRect& imageRect, |
reed | 85d9178 | 2015-09-10 14:33:38 -0700 | [diff] [blame] | 168 | const SkMatrix& viewMatrix, |
bsalomon | e553b64 | 2016-08-17 09:02:09 -0700 | [diff] [blame] | 169 | const SkMatrix& srcToDstRectMatrix, |
Brian Salomon | 2bbdcc4 | 2017-09-07 12:36:34 -0400 | [diff] [blame] | 170 | const GrSamplerState& params, |
reed | 85d9178 | 2015-09-10 14:33:38 -0700 | [diff] [blame] | 171 | const SkRect* srcRectPtr, |
| 172 | int maxTileSize, |
| 173 | int* tileSize, |
| 174 | SkIRect* clippedSubset) const; |
reed | 85d9178 | 2015-09-10 14:33:38 -0700 | [diff] [blame] | 175 | // Just returns the predicate, not the out-tileSize or out-clippedSubset, as they are not |
| 176 | // needed at the moment. |
| 177 | bool shouldTileImage(const SkImage* image, const SkRect* srcRectPtr, |
| 178 | SkCanvas::SrcRectConstraint constraint, SkFilterQuality quality, |
bsalomon | e553b64 | 2016-08-17 09:02:09 -0700 | [diff] [blame] | 179 | const SkMatrix& viewMatrix, const SkMatrix& srcToDstRect) const; |
bsalomon | c55271f | 2015-11-09 11:55:57 -0800 | [diff] [blame] | 180 | |
Mike Reed | a136136 | 2017-03-07 09:37:29 -0500 | [diff] [blame] | 181 | sk_sp<SkSpecialImage> filterTexture(SkSpecialImage*, |
robertphillips | 970587b | 2016-07-14 14:12:55 -0700 | [diff] [blame] | 182 | int left, int top, |
| 183 | SkIPoint* offset, |
| 184 | const SkImageFilter* filter); |
| 185 | |
bsalomon | e553b64 | 2016-08-17 09:02:09 -0700 | [diff] [blame] | 186 | // Splits bitmap into tiles of tileSize and draws them using separate textures for each tile. |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 187 | void drawTiledBitmap(const SkBitmap& bitmap, |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 188 | const SkMatrix& viewMatrix, |
bsalomon | e553b64 | 2016-08-17 09:02:09 -0700 | [diff] [blame] | 189 | const SkMatrix& srcToDstMatrix, |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 190 | const SkRect& srcRect, |
commit-bot@chromium.org | 7edad87 | 2013-10-25 14:58:12 +0000 | [diff] [blame] | 191 | const SkIRect& clippedSrcRect, |
Brian Salomon | 2bbdcc4 | 2017-09-07 12:36:34 -0400 | [diff] [blame] | 192 | const GrSamplerState& params, |
commit-bot@chromium.org | eed779d | 2013-08-16 10:24:37 +0000 | [diff] [blame] | 193 | const SkPaint& paint, |
reed | a5517e2 | 2015-07-14 10:54:12 -0700 | [diff] [blame] | 194 | SkCanvas::SrcRectConstraint, |
commit-bot@chromium.org | dec6150 | 2013-12-02 22:22:35 +0000 | [diff] [blame] | 195 | int tileSize, |
| 196 | bool bicubic); |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 197 | |
bsalomon | e553b64 | 2016-08-17 09:02:09 -0700 | [diff] [blame] | 198 | // Used by drawTiledBitmap to draw each tile. |
| 199 | void drawBitmapTile(const SkBitmap&, |
| 200 | const SkMatrix& viewMatrix, |
| 201 | const SkRect& dstRect, |
| 202 | const SkRect& srcRect, |
Brian Salomon | 2bbdcc4 | 2017-09-07 12:36:34 -0400 | [diff] [blame] | 203 | const GrSamplerState& samplerState, |
bsalomon | e553b64 | 2016-08-17 09:02:09 -0700 | [diff] [blame] | 204 | const SkPaint& paint, |
| 205 | SkCanvas::SrcRectConstraint, |
| 206 | bool bicubic, |
| 207 | bool needsTextureDomain); |
| 208 | |
Michael Ludwig | 7ae2ab5 | 2019-03-05 16:00:20 -0500 | [diff] [blame] | 209 | // If not null, dstClip must be contained inside dst and will also respect the edge AA flags. |
| 210 | // If 'preViewMatrix' is not null, final CTM will be this->ctm() * preViewMatrix. |
Michael Ludwig | 1433cfd | 2019-02-27 17:12:30 -0500 | [diff] [blame] | 211 | void drawImageQuad(const SkImage*, const SkRect* src, const SkRect* dst, |
| 212 | const SkPoint dstClip[4], GrAA aa, GrQuadAAFlags aaFlags, |
Michael Ludwig | 7ae2ab5 | 2019-03-05 16:00:20 -0500 | [diff] [blame] | 213 | const SkMatrix* preViewMatrix, const SkPaint&, SkCanvas::SrcRectConstraint); |
Brian Salomon | 3416969 | 2017-08-28 15:32:01 -0400 | [diff] [blame] | 214 | |
Michael Ludwig | 1433cfd | 2019-02-27 17:12:30 -0500 | [diff] [blame] | 215 | // TODO(michaelludwig): This can be removed once drawBitmapRect is removed from SkDevice |
| 216 | // so that drawImageQuad is the sole entry point into the draw-single-image op |
bsalomon | b1b0199 | 2015-11-18 10:56:08 -0800 | [diff] [blame] | 217 | void drawTextureProducer(GrTextureProducer*, |
bsalomon | c55271f | 2015-11-09 11:55:57 -0800 | [diff] [blame] | 218 | const SkRect* srcRect, |
| 219 | const SkRect* dstRect, |
bsalomon | b1b0199 | 2015-11-18 10:56:08 -0800 | [diff] [blame] | 220 | SkCanvas::SrcRectConstraint, |
bsalomon | c55271f | 2015-11-09 11:55:57 -0800 | [diff] [blame] | 221 | const SkMatrix& viewMatrix, |
Jim Van Verth | 30e0d7f | 2018-11-02 13:36:42 -0400 | [diff] [blame] | 222 | const SkPaint&, |
| 223 | bool attemptDrawTexture); |
bsalomon | c55271f | 2015-11-09 11:55:57 -0800 | [diff] [blame] | 224 | |
Brian Salomon | 2a943df | 2018-05-04 13:43:19 -0400 | [diff] [blame] | 225 | void drawProducerLattice(GrTextureProducer*, std::unique_ptr<SkLatticeIter>, const SkRect& dst, |
| 226 | const SkPaint&); |
robertphillips | d770610 | 2016-02-25 09:28:08 -0800 | [diff] [blame] | 227 | |
Mike Reed | a136136 | 2017-03-07 09:37:29 -0500 | [diff] [blame] | 228 | void drawStrokedLine(const SkPoint pts[2], const SkPaint&); |
commit-bot@chromium.org | 628ed0b | 2014-05-19 14:32:49 +0000 | [diff] [blame] | 229 | |
Mike Reed | 887cdf1 | 2017-04-03 11:11:09 -0400 | [diff] [blame] | 230 | void wireframeVertices(SkVertices::VertexMode, int vertexCount, const SkPoint verts[], |
Ruiqi Mao | c97a339 | 2018-08-15 10:44:19 -0400 | [diff] [blame] | 231 | const SkVertices::Bone bones[], int boneCount, SkBlendMode, |
Ruiqi Mao | 4ec72f7 | 2018-07-10 17:21:07 -0400 | [diff] [blame] | 232 | const uint16_t indices[], int indexCount, const SkPaint&); |
Mike Reed | 2f6b5a4 | 2017-03-19 15:04:17 -0400 | [diff] [blame] | 233 | |
Brian Salomon | bf6b979 | 2019-08-21 09:38:10 -0400 | [diff] [blame] | 234 | static std::unique_ptr<GrRenderTargetContext> MakeRenderTargetContext(GrContext*, |
| 235 | SkBudgeted, |
| 236 | const SkImageInfo&, |
| 237 | int sampleCount, |
| 238 | GrSurfaceOrigin, |
| 239 | const SkSurfaceProps*, |
| 240 | GrMipMapped); |
kkinnunen | abcfab4 | 2015-02-22 22:53:44 -0800 | [diff] [blame] | 241 | |
joshualitt | dbd3593 | 2015-04-02 09:19:04 -0700 | [diff] [blame] | 242 | friend class GrAtlasTextContext; |
robertphillips | 7b05ff1 | 2015-06-19 14:14:54 -0700 | [diff] [blame] | 243 | friend class SkSurface_Gpu; // for access to surfaceProps |
Mike Reed | c5e641c | 2017-02-17 14:38:11 -0500 | [diff] [blame] | 244 | typedef SkClipStackDevice INHERITED; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 245 | }; |
| 246 | |
| 247 | #endif |