robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2015 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. |
| 6 | */ |
| 7 | |
Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 8 | #ifndef GrRenderTargetContext_DEFINED |
| 9 | #define GrRenderTargetContext_DEFINED |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 10 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 11 | #include "include/core/SkCanvas.h" |
| 12 | #include "include/core/SkDrawable.h" |
| 13 | #include "include/core/SkRefCnt.h" |
| 14 | #include "include/core/SkSurface.h" |
| 15 | #include "include/core/SkSurfaceProps.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 16 | #include "include/private/GrTypesPriv.h" |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 17 | #include "src/gpu/GrOpsTask.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 18 | #include "src/gpu/GrPaint.h" |
Greg Daniel | f91aeb2 | 2019-06-18 09:58:02 -0400 | [diff] [blame] | 19 | #include "src/gpu/GrRenderTargetProxy.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 20 | #include "src/gpu/GrSurfaceContext.h" |
Greg Daniel | a83de58 | 2019-10-22 09:33:25 -0400 | [diff] [blame] | 21 | #include "src/gpu/GrSurfaceProxyView.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 22 | #include "src/gpu/GrXferProcessor.h" |
Michael Ludwig | 6132820 | 2019-06-19 14:48:58 +0000 | [diff] [blame] | 23 | #include "src/gpu/geometry/GrQuad.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 24 | #include "src/gpu/text/GrTextTarget.h" |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 25 | |
Greg Daniel | a5cb781 | 2017-06-16 09:45:32 -0400 | [diff] [blame] | 26 | class GrBackendSemaphore; |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 27 | class GrClip; |
Brian Osman | 2240be9 | 2017-10-18 13:15:13 -0400 | [diff] [blame] | 28 | class GrColorSpaceXform; |
Chris Dalton | 1a325d2 | 2017-07-14 15:17:41 -0600 | [diff] [blame] | 29 | class GrCoverageCountingPathRenderer; |
Brian Salomon | 9afd371 | 2016-12-01 10:59:09 -0500 | [diff] [blame] | 30 | class GrDrawOp; |
csmartdalton | 29df760 | 2016-08-31 11:55:52 -0700 | [diff] [blame] | 31 | class GrFixedClip; |
Robert Phillips | 0d075de | 2019-03-04 11:08:13 -0500 | [diff] [blame] | 32 | class GrOp; |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 33 | class GrRenderTarget; |
Brian Osman | 45580d3 | 2016-11-23 09:37:01 -0500 | [diff] [blame] | 34 | class GrRenderTargetContextPriv; |
Brian Salomon | 2fad74a | 2017-12-20 13:28:55 -0500 | [diff] [blame] | 35 | class GrShape; |
bsalomon | 6663acf | 2016-05-10 09:14:17 -0700 | [diff] [blame] | 36 | class GrStyle; |
Robert Phillips | eaa8625 | 2016-11-08 13:49:39 +0000 | [diff] [blame] | 37 | class GrTextureProxy; |
robertphillips | 4430239 | 2016-07-08 14:43:03 -0700 | [diff] [blame] | 38 | struct GrUserStencilSettings; |
Jim Van Verth | 3af1af9 | 2017-05-18 15:06:54 -0400 | [diff] [blame] | 39 | struct SkDrawShadowRec; |
Herb Derby | cddab25 | 2018-07-16 11:19:04 -0400 | [diff] [blame] | 40 | class SkGlyphRunList; |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 41 | struct SkIPoint; |
| 42 | struct SkIRect; |
msarett | 10e3d9b | 2016-08-18 15:46:03 -0700 | [diff] [blame] | 43 | class SkLatticeIter; |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 44 | class SkMatrix; |
robertphillips | 2334fb6 | 2015-06-17 05:43:33 -0700 | [diff] [blame] | 45 | class SkPaint; |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 46 | class SkPath; |
| 47 | struct SkPoint; |
| 48 | struct SkRect; |
Brian Osman | 45580d3 | 2016-11-23 09:37:01 -0500 | [diff] [blame] | 49 | class SkRegion; |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 50 | class SkRRect; |
jvanverth | 31ff762 | 2015-08-07 10:09:28 -0700 | [diff] [blame] | 51 | struct SkRSXform; |
robertphillips | 2334fb6 | 2015-06-17 05:43:33 -0700 | [diff] [blame] | 52 | class SkTextBlob; |
Brian Salomon | 199fb87 | 2017-02-06 09:41:10 -0500 | [diff] [blame] | 53 | class SkVertices; |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 54 | |
Brian Osman | 45580d3 | 2016-11-23 09:37:01 -0500 | [diff] [blame] | 55 | /** |
| 56 | * A helper object to orchestrate commands (draws, etc...) for GrSurfaces that are GrRenderTargets. |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 57 | */ |
Brian Salomon | 57f211b | 2019-08-21 15:21:09 -0400 | [diff] [blame] | 58 | class GrRenderTargetContext : public GrSurfaceContext { |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 59 | public: |
Greg Daniel | bfa19c4 | 2019-12-19 16:41:40 -0500 | [diff] [blame] | 60 | GrRenderTargetContext(GrRecordingContext*, sk_sp<GrRenderTargetProxy>, GrColorType, |
| 61 | GrSurfaceOrigin, GrSwizzle readSwizzle, GrSwizzle outSwizzle, |
| 62 | sk_sp<SkColorSpace>, const SkSurfaceProps*, bool managedOpsTask = true); |
| 63 | |
Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 64 | ~GrRenderTargetContext() override; |
robertphillips | 2334fb6 | 2015-06-17 05:43:33 -0700 | [diff] [blame] | 65 | |
Robert Phillips | e4643cc | 2018-08-14 13:01:29 -0400 | [diff] [blame] | 66 | virtual void drawGlyphRunList(const GrClip&, const SkMatrix& viewMatrix, const SkGlyphRunList&); |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 67 | |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 68 | /** |
| 69 | * Provides a perfomance hint that the render target's contents are allowed |
| 70 | * to become undefined. |
| 71 | */ |
robertphillips | 2e1e51f | 2015-10-15 08:01:48 -0700 | [diff] [blame] | 72 | void discard(); |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 73 | |
Chris Dalton | 344e903 | 2017-12-11 15:42:09 -0700 | [diff] [blame] | 74 | enum class CanClearFullscreen : bool { |
| 75 | kNo = false, |
| 76 | kYes = true |
| 77 | }; |
| 78 | |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 79 | /** |
| 80 | * Clear the entire or rect of the render target, ignoring any clips. |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 81 | * @param rect the rect to clear or the whole thing if rect is NULL. |
| 82 | * @param color the color to clear to. |
Chris Dalton | 344e903 | 2017-12-11 15:42:09 -0700 | [diff] [blame] | 83 | * @param CanClearFullscreen allows partial clears to be converted to fullscreen clears on |
| 84 | * tiling platforms where that is an optimization. |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 85 | */ |
Brian Osman | 9a9baae | 2018-11-05 15:06:26 -0500 | [diff] [blame] | 86 | void clear(const SkIRect* rect, const SkPMColor4f& color, CanClearFullscreen); |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 87 | |
Chris Dalton | 0493fbd | 2019-09-18 15:49:46 -0600 | [diff] [blame] | 88 | void clear(const SkPMColor4f& color) { |
| 89 | return this->clear(nullptr, color, CanClearFullscreen::kYes); |
| 90 | } |
| 91 | |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 92 | /** |
| 93 | * Draw everywhere (respecting the clip) with the paint. |
| 94 | */ |
Brian Salomon | 82f4431 | 2017-01-11 13:42:54 -0500 | [diff] [blame] | 95 | void drawPaint(const GrClip&, GrPaint&&, const SkMatrix& viewMatrix); |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 96 | |
| 97 | /** |
Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame] | 98 | * Draw the rect using a paint. |
| 99 | * @param paint describes how to color pixels. |
| 100 | * @param GrAA Controls whether rect is antialiased |
| 101 | * @param viewMatrix transformation matrix |
| 102 | * @param style The style to apply. Null means fill. Currently path effects are not |
| 103 | * allowed. |
| 104 | * The rects coords are used to access the paint (through texture matrix) |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 105 | */ |
robertphillips | 2e1e51f | 2015-10-15 08:01:48 -0700 | [diff] [blame] | 106 | void drawRect(const GrClip&, |
Brian Salomon | 82f4431 | 2017-01-11 13:42:54 -0500 | [diff] [blame] | 107 | GrPaint&& paint, |
Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame] | 108 | GrAA, |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 109 | const SkMatrix& viewMatrix, |
| 110 | const SkRect&, |
Brian Salomon | 82f4431 | 2017-01-11 13:42:54 -0500 | [diff] [blame] | 111 | const GrStyle* style = nullptr); |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 112 | |
| 113 | /** |
bsalomon | a2e69fc | 2015-11-05 10:41:43 -0800 | [diff] [blame] | 114 | * Maps a rectangle of shader coordinates to a rectangle and fills that rectangle. |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 115 | * |
Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame] | 116 | * @param paint describes how to color pixels. |
| 117 | * @param GrAA Controls whether rect is antialiased |
| 118 | * @param viewMatrix transformation matrix which applies to rectToDraw |
| 119 | * @param rectToDraw the rectangle to draw |
| 120 | * @param localRect the rectangle of shader coordinates applied to rectToDraw |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 121 | */ |
Michael Ludwig | 136f45a | 2019-02-19 11:44:41 -0500 | [diff] [blame] | 122 | void fillRectToRect(const GrClip& clip, |
Brian Salomon | 82f4431 | 2017-01-11 13:42:54 -0500 | [diff] [blame] | 123 | GrPaint&& paint, |
Michael Ludwig | 136f45a | 2019-02-19 11:44:41 -0500 | [diff] [blame] | 124 | GrAA aa, |
bsalomon | a2e69fc | 2015-11-05 10:41:43 -0800 | [diff] [blame] | 125 | const SkMatrix& viewMatrix, |
| 126 | const SkRect& rectToDraw, |
Michael Ludwig | 136f45a | 2019-02-19 11:44:41 -0500 | [diff] [blame] | 127 | const SkRect& localRect) { |
Michael Ludwig | 6132820 | 2019-06-19 14:48:58 +0000 | [diff] [blame] | 128 | this->drawFilledQuad(clip, std::move(paint), aa, |
| 129 | aa == GrAA::kYes ? GrQuadAAFlags::kAll : GrQuadAAFlags::kNone, |
| 130 | GrQuad::MakeFromRect(rectToDraw, viewMatrix), GrQuad(localRect)); |
Michael Ludwig | 136f45a | 2019-02-19 11:44:41 -0500 | [diff] [blame] | 131 | } |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 132 | |
| 133 | /** |
bsalomon | a2e69fc | 2015-11-05 10:41:43 -0800 | [diff] [blame] | 134 | * Fills a rect with a paint and a localMatrix. |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 135 | */ |
bsalomon | a2e69fc | 2015-11-05 10:41:43 -0800 | [diff] [blame] | 136 | void fillRectWithLocalMatrix(const GrClip& clip, |
Brian Salomon | 82f4431 | 2017-01-11 13:42:54 -0500 | [diff] [blame] | 137 | GrPaint&& paint, |
Michael Ludwig | 6132820 | 2019-06-19 14:48:58 +0000 | [diff] [blame] | 138 | GrAA aa, |
bsalomon | a2e69fc | 2015-11-05 10:41:43 -0800 | [diff] [blame] | 139 | const SkMatrix& viewMatrix, |
| 140 | const SkRect& rect, |
Michael Ludwig | 6132820 | 2019-06-19 14:48:58 +0000 | [diff] [blame] | 141 | const SkMatrix& localMatrix) { |
| 142 | this->drawFilledQuad(clip, std::move(paint), aa, |
| 143 | aa == GrAA::kYes ? GrQuadAAFlags::kAll : GrQuadAAFlags::kNone, |
| 144 | GrQuad::MakeFromRect(rect, viewMatrix), |
| 145 | GrQuad::MakeFromRect(rect, localMatrix)); |
| 146 | } |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 147 | |
Michael Ludwig | 7545190 | 2019-01-23 11:14:29 -0500 | [diff] [blame] | 148 | /** |
| 149 | * Creates an op that draws a fill rect with per-edge control over anti-aliasing. |
Michael Ludwig | ce62dec | 2019-02-19 11:48:46 -0500 | [diff] [blame] | 150 | * |
| 151 | * This is a specialized version of fillQuadWithEdgeAA, but is kept separate since knowing |
| 152 | * the geometry is a rectangle affords more optimizations. |
Michael Ludwig | 7545190 | 2019-01-23 11:14:29 -0500 | [diff] [blame] | 153 | */ |
Michael Ludwig | 136f45a | 2019-02-19 11:44:41 -0500 | [diff] [blame] | 154 | void fillRectWithEdgeAA(const GrClip& clip, GrPaint&& paint, GrAA aa, GrQuadAAFlags edgeAA, |
| 155 | const SkMatrix& viewMatrix, const SkRect& rect, |
Michael Ludwig | 6132820 | 2019-06-19 14:48:58 +0000 | [diff] [blame] | 156 | const SkRect* optionalLocalRect = nullptr) { |
| 157 | const SkRect& localRect = optionalLocalRect ? *optionalLocalRect : rect; |
| 158 | this->drawFilledQuad(clip, std::move(paint), aa, edgeAA, |
| 159 | GrQuad::MakeFromRect(rect, viewMatrix), GrQuad(localRect)); |
| 160 | } |
Michael Ludwig | 7545190 | 2019-01-23 11:14:29 -0500 | [diff] [blame] | 161 | |
Michael Ludwig | ce62dec | 2019-02-19 11:48:46 -0500 | [diff] [blame] | 162 | /** |
| 163 | * Similar to fillRectWithEdgeAA but draws an arbitrary 2D convex quadrilateral transformed |
| 164 | * by 'viewMatrix', with per-edge control over anti-aliasing. The quad should follow the |
| 165 | * ordering used by SkRect::toQuad(), which determines how the edge AA is applied: |
| 166 | * - "top" = points [0] and [1] |
| 167 | * - "right" = points[1] and [2] |
| 168 | * - "bottom" = points[2] and [3] |
| 169 | * - "left" = points[3] and [0] |
| 170 | * |
| 171 | * The last argument, 'optionalLocalQuad', can be null if no separate local coordinates are |
| 172 | * necessary. |
| 173 | */ |
| 174 | void fillQuadWithEdgeAA(const GrClip& clip, GrPaint&& paint, GrAA aa, GrQuadAAFlags edgeAA, |
| 175 | const SkMatrix& viewMatrix, const SkPoint quad[4], |
Michael Ludwig | 6132820 | 2019-06-19 14:48:58 +0000 | [diff] [blame] | 176 | const SkPoint optionalLocalQuad[4]) { |
| 177 | const SkPoint* localQuad = optionalLocalQuad ? optionalLocalQuad : quad; |
| 178 | this->drawFilledQuad(clip, std::move(paint), aa, edgeAA, |
| 179 | GrQuad::MakeFromSkQuad(quad, viewMatrix), |
| 180 | GrQuad::MakeFromSkQuad(localQuad, SkMatrix::I())); |
| 181 | } |
Michael Ludwig | ce62dec | 2019-02-19 11:48:46 -0500 | [diff] [blame] | 182 | |
Michael Ludwig | 6985853 | 2018-11-28 15:34:34 -0500 | [diff] [blame] | 183 | /** Used with drawQuadSet */ |
| 184 | struct QuadSetEntry { |
| 185 | SkRect fRect; |
| 186 | SkPMColor4f fColor; // Overrides any color on the GrPaint |
| 187 | SkMatrix fLocalMatrix; |
| 188 | GrQuadAAFlags fAAFlags; |
| 189 | }; |
| 190 | |
Michael Ludwig | 7545190 | 2019-01-23 11:14:29 -0500 | [diff] [blame] | 191 | // TODO(michaelludwig) - remove if the bulk API is not useful for SkiaRenderer |
Michael Ludwig | 6985853 | 2018-11-28 15:34:34 -0500 | [diff] [blame] | 192 | void drawQuadSet(const GrClip& clip, GrPaint&& paint, GrAA aa, const SkMatrix& viewMatrix, |
| 193 | const QuadSetEntry[], int cnt); |
| 194 | |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 195 | /** |
Brian Salomon | 3416969 | 2017-08-28 15:32:01 -0400 | [diff] [blame] | 196 | * Creates an op that draws a subrectangle of a texture. The passed color is modulated by the |
| 197 | * texture's color. 'srcRect' specifies the rectangle of the texture to draw. 'dstRect' |
| 198 | * specifies the rectangle to draw in local coords which will be transformed by 'viewMatrix' to |
Brian Salomon | be3c1d2 | 2018-05-21 12:54:39 -0400 | [diff] [blame] | 199 | * device space. |
Brian Salomon | 3416969 | 2017-08-28 15:32:01 -0400 | [diff] [blame] | 200 | */ |
Greg Daniel | c594e62 | 2019-10-15 14:01:49 -0400 | [diff] [blame] | 201 | void drawTexture(const GrClip& clip, sk_sp<GrTextureProxy> proxy, GrColorType srcColorType, |
Brian Salomon | fc11844 | 2019-11-22 19:09:27 -0500 | [diff] [blame] | 202 | SkAlphaType srcAlphaType, GrSamplerState::Filter filter, SkBlendMode mode, |
| 203 | const SkPMColor4f& color, const SkRect& srcRect, const SkRect& dstRect, |
| 204 | GrAA aa, GrQuadAAFlags edgeAA, SkCanvas::SrcRectConstraint constraint, |
| 205 | const SkMatrix& viewMatrix, sk_sp<GrColorSpaceXform> texXform) { |
Michael Ludwig | aee26ea | 2019-07-08 16:22:48 +0000 | [diff] [blame] | 206 | const SkRect* domain = constraint == SkCanvas::kStrict_SrcRectConstraint ? |
| 207 | &srcRect : nullptr; |
Greg Daniel | 549325c | 2019-10-30 16:19:20 -0400 | [diff] [blame] | 208 | GrSurfaceOrigin origin = proxy->origin(); |
| 209 | const GrSwizzle& swizzle = proxy->textureSwizzle(); |
| 210 | GrSurfaceProxyView proxyView(std::move(proxy), origin, swizzle); |
Brian Salomon | fc11844 | 2019-11-22 19:09:27 -0500 | [diff] [blame] | 211 | this->drawTexturedQuad(clip, std::move(proxyView), srcAlphaType, std::move(texXform), |
Greg Daniel | 549325c | 2019-10-30 16:19:20 -0400 | [diff] [blame] | 212 | filter, color, mode, aa, edgeAA, |
| 213 | GrQuad::MakeFromRect(dstRect, viewMatrix), GrQuad(srcRect), domain); |
Michael Ludwig | aee26ea | 2019-07-08 16:22:48 +0000 | [diff] [blame] | 214 | } |
Brian Salomon | 3416969 | 2017-08-28 15:32:01 -0400 | [diff] [blame] | 215 | |
Michael Ludwig | ce62dec | 2019-02-19 11:48:46 -0500 | [diff] [blame] | 216 | /** |
| 217 | * Variant of drawTexture that instead draws the texture applied to 'dstQuad' transformed by |
| 218 | * 'viewMatrix', using the 'srcQuad' texture coordinates clamped to the optional 'domain'. If |
| 219 | * 'domain' is null, it's equivalent to using the fast src rect constraint. If 'domain' is |
| 220 | * provided, the strict src rect constraint is applied using 'domain'. |
| 221 | */ |
Greg Daniel | c594e62 | 2019-10-15 14:01:49 -0400 | [diff] [blame] | 222 | void drawTextureQuad(const GrClip& clip, sk_sp<GrTextureProxy> proxy, GrColorType srcColorType, |
Brian Salomon | fc11844 | 2019-11-22 19:09:27 -0500 | [diff] [blame] | 223 | SkAlphaType srcAlphaType, GrSamplerState::Filter filter, SkBlendMode mode, |
| 224 | const SkPMColor4f& color, const SkPoint srcQuad[4], |
| 225 | const SkPoint dstQuad[4], GrAA aa, GrQuadAAFlags edgeAA, |
| 226 | const SkRect* domain, const SkMatrix& viewMatrix, |
Michael Ludwig | aee26ea | 2019-07-08 16:22:48 +0000 | [diff] [blame] | 227 | sk_sp<GrColorSpaceXform> texXform) { |
Greg Daniel | 549325c | 2019-10-30 16:19:20 -0400 | [diff] [blame] | 228 | GrSurfaceOrigin origin = proxy->origin(); |
| 229 | const GrSwizzle& swizzle = proxy->textureSwizzle(); |
| 230 | GrSurfaceProxyView proxyView(std::move(proxy), origin, swizzle); |
Brian Salomon | fc11844 | 2019-11-22 19:09:27 -0500 | [diff] [blame] | 231 | this->drawTexturedQuad(clip, std::move(proxyView), srcAlphaType, std::move(texXform), |
Greg Daniel | 549325c | 2019-10-30 16:19:20 -0400 | [diff] [blame] | 232 | filter, color, mode, aa, edgeAA, |
| 233 | GrQuad::MakeFromSkQuad(dstQuad, viewMatrix), |
Michael Ludwig | aee26ea | 2019-07-08 16:22:48 +0000 | [diff] [blame] | 234 | GrQuad::MakeFromSkQuad(srcQuad, SkMatrix::I()), domain); |
| 235 | } |
Michael Ludwig | ce62dec | 2019-02-19 11:48:46 -0500 | [diff] [blame] | 236 | |
Brian Salomon | d7065e7 | 2018-10-12 11:42:02 -0400 | [diff] [blame] | 237 | /** Used with drawTextureSet */ |
| 238 | struct TextureSetEntry { |
Greg Daniel | 549325c | 2019-10-30 16:19:20 -0400 | [diff] [blame] | 239 | GrSurfaceProxyView fProxyView; |
Brian Salomon | fc11844 | 2019-11-22 19:09:27 -0500 | [diff] [blame] | 240 | SkAlphaType fSrcAlphaType; |
Brian Salomon | d7065e7 | 2018-10-12 11:42:02 -0400 | [diff] [blame] | 241 | SkRect fSrcRect; |
| 242 | SkRect fDstRect; |
Michael Ludwig | 1433cfd | 2019-02-27 17:12:30 -0500 | [diff] [blame] | 243 | const SkPoint* fDstClipQuad; // Must be null, or point to an array of 4 points |
Michael Ludwig | 7ae2ab5 | 2019-03-05 16:00:20 -0500 | [diff] [blame] | 244 | const SkMatrix* fPreViewMatrix; // If not null, entry's CTM is 'viewMatrix' * fPreViewMatrix |
Brian Salomon | 1da5cad | 2018-11-21 09:21:18 -0500 | [diff] [blame] | 245 | float fAlpha; |
Brian Salomon | d7065e7 | 2018-10-12 11:42:02 -0400 | [diff] [blame] | 246 | GrQuadAAFlags fAAFlags; |
| 247 | }; |
| 248 | /** |
| 249 | * Draws a set of textures with a shared filter, color, view matrix, color xform, and |
| 250 | * texture color xform. The textures must all have the same GrTextureType and GrConfig. |
Michael Ludwig | ce62dec | 2019-02-19 11:48:46 -0500 | [diff] [blame] | 251 | * |
| 252 | * If any entries provide a non-null fDstClip array, it will be read from immediately based on |
| 253 | * fDstClipCount, so the pointer can become invalid after this returns. |
Michael Ludwig | 379e496 | 2019-12-06 13:21:26 -0500 | [diff] [blame] | 254 | * |
Hal Canary | 425929c | 2019-12-09 11:55:40 -0500 | [diff] [blame] | 255 | * 'proxRunCnt' is the number of proxy changes encountered in the entry array. Technically this |
Michael Ludwig | 379e496 | 2019-12-06 13:21:26 -0500 | [diff] [blame] | 256 | * can be inferred from the array within this function, but the information is already known |
| 257 | * by SkGpuDevice, so no need to incur another iteration over the array. |
Brian Salomon | d7065e7 | 2018-10-12 11:42:02 -0400 | [diff] [blame] | 258 | */ |
Hal Canary | 425929c | 2019-12-09 11:55:40 -0500 | [diff] [blame] | 259 | void drawTextureSet(const GrClip&, TextureSetEntry[], int cnt, int proxyRunCnt, |
Michael Ludwig | 379e496 | 2019-12-06 13:21:26 -0500 | [diff] [blame] | 260 | GrSamplerState::Filter, SkBlendMode mode, GrAA aa, |
| 261 | SkCanvas::SrcRectConstraint, const SkMatrix& viewMatrix, |
| 262 | sk_sp<GrColorSpaceXform> texXform); |
Brian Salomon | d7065e7 | 2018-10-12 11:42:02 -0400 | [diff] [blame] | 263 | |
Brian Salomon | 3416969 | 2017-08-28 15:32:01 -0400 | [diff] [blame] | 264 | /** |
Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame] | 265 | * Draw a roundrect using a paint. |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 266 | * |
Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame] | 267 | * @param paint describes how to color pixels. |
| 268 | * @param GrAA Controls whether rrect is antialiased. |
| 269 | * @param viewMatrix transformation matrix |
| 270 | * @param rrect the roundrect to draw |
| 271 | * @param style style to apply to the rrect. Currently path effects are not allowed. |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 272 | */ |
robertphillips | 2e1e51f | 2015-10-15 08:01:48 -0700 | [diff] [blame] | 273 | void drawRRect(const GrClip&, |
Brian Salomon | 82f4431 | 2017-01-11 13:42:54 -0500 | [diff] [blame] | 274 | GrPaint&&, |
Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame] | 275 | GrAA, |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 276 | const SkMatrix& viewMatrix, |
| 277 | const SkRRect& rrect, |
bsalomon | 6663acf | 2016-05-10 09:14:17 -0700 | [diff] [blame] | 278 | const GrStyle& style); |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 279 | |
| 280 | /** |
Jim Van Verth | 3af1af9 | 2017-05-18 15:06:54 -0400 | [diff] [blame] | 281 | * Use a fast method to render the ambient and spot shadows for a path. |
| 282 | * Will return false if not possible for the given path. |
Jim Van Verth | c590341 | 2016-11-17 15:27:09 -0500 | [diff] [blame] | 283 | * |
Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame] | 284 | * @param viewMatrix transformation matrix |
Jim Van Verth | 3af1af9 | 2017-05-18 15:06:54 -0400 | [diff] [blame] | 285 | * @param path the path to shadow |
| 286 | * @param rec parameters for shadow rendering |
Jim Van Verth | c590341 | 2016-11-17 15:27:09 -0500 | [diff] [blame] | 287 | */ |
Jim Van Verth | 3af1af9 | 2017-05-18 15:06:54 -0400 | [diff] [blame] | 288 | bool drawFastShadow(const GrClip&, |
Jim Van Verth | 3af1af9 | 2017-05-18 15:06:54 -0400 | [diff] [blame] | 289 | const SkMatrix& viewMatrix, |
| 290 | const SkPath& path, |
| 291 | const SkDrawShadowRec& rec); |
Jim Van Verth | c590341 | 2016-11-17 15:27:09 -0500 | [diff] [blame] | 292 | |
| 293 | /** |
Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame] | 294 | * Shortcut for filling a SkPath consisting of nested rrects using a paint. The result is |
| 295 | * undefined if outer does not contain inner. |
robertphillips | 0009589 | 2016-02-29 13:50:40 -0800 | [diff] [blame] | 296 | * |
Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame] | 297 | * @param paint describes how to color pixels. |
| 298 | * @param GrAA Controls whether rrects edges are antialiased |
| 299 | * @param viewMatrix transformation matrix |
| 300 | * @param outer the outer roundrect |
| 301 | * @param inner the inner roundrect |
robertphillips | 0009589 | 2016-02-29 13:50:40 -0800 | [diff] [blame] | 302 | */ |
| 303 | void drawDRRect(const GrClip&, |
Brian Salomon | 82f4431 | 2017-01-11 13:42:54 -0500 | [diff] [blame] | 304 | GrPaint&&, |
Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame] | 305 | GrAA, |
robertphillips | 0009589 | 2016-02-29 13:50:40 -0800 | [diff] [blame] | 306 | const SkMatrix& viewMatrix, |
| 307 | const SkRRect& outer, |
| 308 | const SkRRect& inner); |
| 309 | |
| 310 | /** |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 311 | * Draws a path. |
| 312 | * |
| 313 | * @param paint describes how to color pixels. |
Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame] | 314 | * @param GrAA Controls whether the path is antialiased. |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 315 | * @param viewMatrix transformation matrix |
| 316 | * @param path the path to draw |
bsalomon | 6663acf | 2016-05-10 09:14:17 -0700 | [diff] [blame] | 317 | * @param style style to apply to the path. |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 318 | */ |
robertphillips | 2e1e51f | 2015-10-15 08:01:48 -0700 | [diff] [blame] | 319 | void drawPath(const GrClip&, |
Brian Salomon | 82f4431 | 2017-01-11 13:42:54 -0500 | [diff] [blame] | 320 | GrPaint&&, |
Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame] | 321 | GrAA, |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 322 | const SkMatrix& viewMatrix, |
| 323 | const SkPath&, |
Robert Phillips | 20390c3 | 2018-08-17 11:01:03 -0400 | [diff] [blame] | 324 | const GrStyle&); |
| 325 | |
| 326 | /** |
| 327 | * Draws a shape. |
| 328 | * |
| 329 | * @param paint describes how to color pixels. |
| 330 | * @param GrAA Controls whether the path is antialiased. |
| 331 | * @param viewMatrix transformation matrix |
| 332 | * @param shape the shape to draw |
| 333 | */ |
| 334 | void drawShape(const GrClip&, |
| 335 | GrPaint&&, |
| 336 | GrAA, |
| 337 | const SkMatrix& viewMatrix, |
| 338 | const GrShape&); |
| 339 | |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 340 | |
| 341 | /** |
| 342 | * Draws vertices with a paint. |
| 343 | * |
Brian Osman | ae0c50c | 2017-05-25 16:56:34 -0400 | [diff] [blame] | 344 | * @param paint describes how to color pixels. |
| 345 | * @param viewMatrix transformation matrix |
| 346 | * @param vertices specifies the mesh to draw. |
Ruiqi Mao | 4ec72f7 | 2018-07-10 17:21:07 -0400 | [diff] [blame] | 347 | * @param bones bone deformation matrices. |
| 348 | * @param boneCount number of bone matrices. |
Brian Osman | ae0c50c | 2017-05-25 16:56:34 -0400 | [diff] [blame] | 349 | * @param overridePrimType primitive type to draw. If NULL, derive prim type from vertices. |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 350 | */ |
robertphillips | 2e1e51f | 2015-10-15 08:01:48 -0700 | [diff] [blame] | 351 | void drawVertices(const GrClip&, |
Brian Salomon | 82f4431 | 2017-01-11 13:42:54 -0500 | [diff] [blame] | 352 | GrPaint&& paint, |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 353 | const SkMatrix& viewMatrix, |
Brian Osman | ae0c50c | 2017-05-25 16:56:34 -0400 | [diff] [blame] | 354 | sk_sp<SkVertices> vertices, |
Ruiqi Mao | c97a339 | 2018-08-15 10:44:19 -0400 | [diff] [blame] | 355 | const SkVertices::Bone bones[], |
Ruiqi Mao | 4ec72f7 | 2018-07-10 17:21:07 -0400 | [diff] [blame] | 356 | int boneCount, |
Brian Osman | ae0c50c | 2017-05-25 16:56:34 -0400 | [diff] [blame] | 357 | GrPrimitiveType* overridePrimType = nullptr); |
Brian Salomon | 199fb87 | 2017-02-06 09:41:10 -0500 | [diff] [blame] | 358 | |
| 359 | /** |
Brian Osman | 4d92b89 | 2019-03-24 00:53:23 +0000 | [diff] [blame] | 360 | * Draws textured sprites from an atlas with a paint. This currently does not support AA for the |
| 361 | * sprite rectangle edges. |
| 362 | * |
| 363 | * @param paint describes how to color pixels. |
| 364 | * @param viewMatrix transformation matrix |
| 365 | * @param spriteCount number of sprites. |
| 366 | * @param xform array of compressed transformation data, required. |
| 367 | * @param texRect array of texture rectangles used to access the paint. |
| 368 | * @param colors optional array of per-sprite colors, supercedes |
| 369 | * the paint's color field. |
| 370 | */ |
| 371 | void drawAtlas(const GrClip&, |
| 372 | GrPaint&& paint, |
| 373 | const SkMatrix& viewMatrix, |
| 374 | int spriteCount, |
| 375 | const SkRSXform xform[], |
| 376 | const SkRect texRect[], |
| 377 | const SkColor colors[]); |
| 378 | |
| 379 | /** |
msarett | cc319b9 | 2016-08-25 18:07:18 -0700 | [diff] [blame] | 380 | * Draws a region. |
| 381 | * |
| 382 | * @param paint describes how to color pixels |
| 383 | * @param viewMatrix transformation matrix |
Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame] | 384 | * @param aa should the rects of the region be antialiased. |
msarett | cc319b9 | 2016-08-25 18:07:18 -0700 | [diff] [blame] | 385 | * @param region the region to be drawn |
| 386 | * @param style style to apply to the region |
| 387 | */ |
| 388 | void drawRegion(const GrClip&, |
Brian Salomon | 82f4431 | 2017-01-11 13:42:54 -0500 | [diff] [blame] | 389 | GrPaint&& paint, |
Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame] | 390 | GrAA aa, |
msarett | cc319b9 | 2016-08-25 18:07:18 -0700 | [diff] [blame] | 391 | const SkMatrix& viewMatrix, |
| 392 | const SkRegion& region, |
Stan Iliev | 73d8fd9 | 2017-08-02 15:36:24 -0400 | [diff] [blame] | 393 | const GrStyle& style, |
| 394 | const GrUserStencilSettings* ss = nullptr); |
msarett | cc319b9 | 2016-08-25 18:07:18 -0700 | [diff] [blame] | 395 | |
jvanverth | 31ff762 | 2015-08-07 10:09:28 -0700 | [diff] [blame] | 396 | /** |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 397 | * Draws an oval. |
| 398 | * |
| 399 | * @param paint describes how to color pixels. |
Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame] | 400 | * @param GrAA Controls whether the oval is antialiased. |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 401 | * @param viewMatrix transformation matrix |
| 402 | * @param oval the bounding rect of the oval. |
bsalomon | 6663acf | 2016-05-10 09:14:17 -0700 | [diff] [blame] | 403 | * @param style style to apply to the oval. Currently path effects are not allowed. |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 404 | */ |
robertphillips | 2e1e51f | 2015-10-15 08:01:48 -0700 | [diff] [blame] | 405 | void drawOval(const GrClip&, |
Brian Salomon | 82f4431 | 2017-01-11 13:42:54 -0500 | [diff] [blame] | 406 | GrPaint&& paint, |
Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame] | 407 | GrAA, |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 408 | const SkMatrix& viewMatrix, |
| 409 | const SkRect& oval, |
bsalomon | 6663acf | 2016-05-10 09:14:17 -0700 | [diff] [blame] | 410 | const GrStyle& style); |
Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame] | 411 | /** |
| 412 | * Draws a partial arc of an oval. |
| 413 | * |
| 414 | * @param paint describes how to color pixels. |
Brian Salomon | 9950408 | 2016-12-09 15:51:31 -0500 | [diff] [blame] | 415 | * @param GrGrAA Controls whether the arc is antialiased. |
Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame] | 416 | * @param viewMatrix transformation matrix. |
| 417 | * @param oval the bounding rect of the oval. |
| 418 | * @param startAngle starting angle in degrees. |
| 419 | * @param sweepAngle angle to sweep in degrees. Must be in (-360, 360) |
| 420 | * @param useCenter true means that the implied path begins at the oval center, connects as |
| 421 | * a line to the point indicated by the start contains the arc indicated by |
| 422 | * the sweep angle. If false the line beginning at the center point is |
| 423 | * omitted. |
| 424 | * @param style style to apply to the oval. |
| 425 | */ |
bsalomon | 4f3a0ca | 2016-08-22 13:14:26 -0700 | [diff] [blame] | 426 | void drawArc(const GrClip&, |
Brian Salomon | 82f4431 | 2017-01-11 13:42:54 -0500 | [diff] [blame] | 427 | GrPaint&& paint, |
Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame] | 428 | GrAA, |
bsalomon | 4f3a0ca | 2016-08-22 13:14:26 -0700 | [diff] [blame] | 429 | const SkMatrix& viewMatrix, |
| 430 | const SkRect& oval, |
| 431 | SkScalar startAngle, |
| 432 | SkScalar sweepAngle, |
| 433 | bool useCenter, |
| 434 | const GrStyle& style); |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 435 | |
joshualitt | 33a5fce | 2015-11-18 13:28:51 -0800 | [diff] [blame] | 436 | /** |
bsalomon | 4f3a0ca | 2016-08-22 13:14:26 -0700 | [diff] [blame] | 437 | * Draw the image as a set of rects, specified by |iter|. |
joshualitt | 33a5fce | 2015-11-18 13:28:51 -0800 | [diff] [blame] | 438 | */ |
msarett | 10e3d9b | 2016-08-18 15:46:03 -0700 | [diff] [blame] | 439 | void drawImageLattice(const GrClip&, |
Brian Salomon | 2a943df | 2018-05-04 13:43:19 -0400 | [diff] [blame] | 440 | GrPaint&&, |
msarett | 10e3d9b | 2016-08-18 15:46:03 -0700 | [diff] [blame] | 441 | const SkMatrix& viewMatrix, |
Greg Daniel | ed96bca | 2019-12-05 15:05:54 -0500 | [diff] [blame] | 442 | GrSurfaceProxyView, |
Greg Daniel | c594e62 | 2019-10-15 14:01:49 -0400 | [diff] [blame] | 443 | GrColorType srcColorType, |
Brian Salomon | 2a943df | 2018-05-04 13:43:19 -0400 | [diff] [blame] | 444 | sk_sp<GrColorSpaceXform>, |
| 445 | GrSamplerState::Filter, |
| 446 | std::unique_ptr<SkLatticeIter>, |
msarett | 10e3d9b | 2016-08-18 15:46:03 -0700 | [diff] [blame] | 447 | const SkRect& dst); |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 448 | |
robertphillips | 8c523e0 | 2016-07-26 07:41:00 -0700 | [diff] [blame] | 449 | /** |
Greg Daniel | 46cfbc6 | 2019-06-07 11:43:30 -0400 | [diff] [blame] | 450 | * Draws the src texture with no matrix. The dstRect is the dstPoint with the width and height |
| 451 | * of the srcRect. The srcRect and dstRect are clipped to the bounds of the src and dst surfaces |
| 452 | * respectively. |
| 453 | */ |
Brian Salomon | fc11844 | 2019-11-22 19:09:27 -0500 | [diff] [blame] | 454 | bool blitTexture(GrTextureProxy* src, const SkIRect& srcRect, const SkIPoint& dstPoint); |
Greg Daniel | 46cfbc6 | 2019-06-07 11:43:30 -0400 | [diff] [blame] | 455 | |
| 456 | /** |
Greg Daniel | 64cc9aa | 2018-10-19 13:54:56 -0400 | [diff] [blame] | 457 | * Adds the necessary signal and wait semaphores and adds the passed in SkDrawable to the |
| 458 | * command stream. |
| 459 | */ |
| 460 | void drawDrawable(std::unique_ptr<SkDrawable::GpuDrawHandler>, const SkRect& bounds); |
| 461 | |
Brian Salomon | ab32f65 | 2019-05-10 14:24:50 -0400 | [diff] [blame] | 462 | using ReadPixelsCallback = SkSurface::ReadPixelsCallback; |
| 463 | using ReadPixelsContext = SkSurface::ReadPixelsContext; |
Brian Salomon | 024bd00 | 2019-06-11 11:38:16 -0400 | [diff] [blame] | 464 | using RescaleGamma = SkSurface::RescaleGamma; |
| 465 | |
| 466 | // GPU implementation for SkSurface::asyncRescaleAndReadPixels. |
Brian Salomon | 031b0ba | 2019-05-23 11:05:26 -0400 | [diff] [blame] | 467 | void asyncRescaleAndReadPixels(const SkImageInfo& info, const SkIRect& srcRect, |
Brian Salomon | 024bd00 | 2019-06-11 11:38:16 -0400 | [diff] [blame] | 468 | RescaleGamma rescaleGamma, SkFilterQuality rescaleQuality, |
| 469 | ReadPixelsCallback callback, ReadPixelsContext context); |
| 470 | // GPU implementation for SkSurface::asyncRescaleAndReadPixelsYUV420. |
| 471 | void asyncRescaleAndReadPixelsYUV420(SkYUVColorSpace yuvColorSpace, |
Brian Salomon | 9241a6d | 2019-10-03 13:26:54 -0400 | [diff] [blame] | 472 | sk_sp<SkColorSpace> dstColorSpace, |
| 473 | const SkIRect& srcRect, |
| 474 | const SkISize& dstSize, |
| 475 | RescaleGamma rescaleGamma, |
Brian Salomon | 024bd00 | 2019-06-11 11:38:16 -0400 | [diff] [blame] | 476 | SkFilterQuality rescaleQuality, |
Brian Salomon | 9241a6d | 2019-10-03 13:26:54 -0400 | [diff] [blame] | 477 | ReadPixelsCallback callback, |
Brian Salomon | 024bd00 | 2019-06-11 11:38:16 -0400 | [diff] [blame] | 478 | ReadPixelsContext context); |
Brian Salomon | ab32f65 | 2019-05-10 14:24:50 -0400 | [diff] [blame] | 479 | |
Greg Daniel | 64cc9aa | 2018-10-19 13:54:56 -0400 | [diff] [blame] | 480 | /** |
robertphillips | 8c523e0 | 2016-07-26 07:41:00 -0700 | [diff] [blame] | 481 | * After this returns any pending surface IO will be issued to the backend 3D API and |
| 482 | * if the surface has MSAA it will be resolved. |
| 483 | */ |
Greg Daniel | e6bfb7d | 2019-04-17 15:26:11 -0400 | [diff] [blame] | 484 | GrSemaphoresSubmitted flush(SkSurface::BackendSurfaceAccess access, const GrFlushInfo&); |
Greg Daniel | a5cb781 | 2017-06-16 09:45:32 -0400 | [diff] [blame] | 485 | |
| 486 | /** |
| 487 | * The next time this GrRenderTargetContext is flushed, the gpu will wait on the passed in |
| 488 | * semaphores before executing any commands. |
| 489 | */ |
Robert Phillips | bc4994a | 2019-02-14 08:36:56 -0500 | [diff] [blame] | 490 | bool waitOnSemaphores(int numSemaphores, const GrBackendSemaphore waitSemaphores[]); |
robertphillips | 8c523e0 | 2016-07-26 07:41:00 -0700 | [diff] [blame] | 491 | |
Greg Daniel | 46e366a | 2019-12-16 14:38:36 -0500 | [diff] [blame] | 492 | int numSamples() const { return this->asRenderTargetProxy()->numSamples(); } |
robertphillips | ca6eafc | 2016-05-17 09:57:46 -0700 | [diff] [blame] | 493 | const SkSurfaceProps& surfaceProps() const { return fSurfaceProps; } |
Greg Daniel | 46e366a | 2019-12-16 14:38:36 -0500 | [diff] [blame] | 494 | bool wrapsVkSecondaryCB() const { return this->asRenderTargetProxy()->wrapsVkSecondaryCB(); } |
Greg Daniel | e252f08 | 2017-10-23 16:05:23 -0400 | [diff] [blame] | 495 | GrMipMapped mipMapped() const; |
robertphillips | 7bceedc | 2015-12-01 12:51:26 -0800 | [diff] [blame] | 496 | |
Greg Daniel | a83de58 | 2019-10-22 09:33:25 -0400 | [diff] [blame] | 497 | GrSurfaceProxyView outputSurfaceView() { |
Greg Daniel | 46e366a | 2019-12-16 14:38:36 -0500 | [diff] [blame] | 498 | return { fSurfaceProxy, fOrigin, fOutputSwizzle }; |
Greg Daniel | a83de58 | 2019-10-22 09:33:25 -0400 | [diff] [blame] | 499 | } |
Greg Daniel | a83de58 | 2019-10-22 09:33:25 -0400 | [diff] [blame] | 500 | |
Robert Phillips | be9aff2 | 2019-02-15 11:33:22 -0500 | [diff] [blame] | 501 | // This entry point should only be called if the backing GPU object is known to be |
| 502 | // instantiated. |
Greg Daniel | 46e366a | 2019-12-16 14:38:36 -0500 | [diff] [blame] | 503 | GrRenderTarget* accessRenderTarget() { return fSurfaceProxy->peekRenderTarget(); } |
Robert Phillips | eaa8625 | 2016-11-08 13:49:39 +0000 | [diff] [blame] | 504 | |
Robert Phillips | d46697a | 2017-01-25 12:10:37 -0500 | [diff] [blame] | 505 | GrRenderTargetContext* asRenderTargetContext() override { return this; } |
| 506 | |
robertphillips | 391395d | 2016-03-02 09:26:36 -0800 | [diff] [blame] | 507 | // Provides access to functions that aren't part of the public API. |
Brian Osman | 693a540 | 2016-10-27 15:13:22 -0400 | [diff] [blame] | 508 | GrRenderTargetContextPriv priv(); |
| 509 | const GrRenderTargetContextPriv priv() const; |
joshualitt | f5883a6 | 2016-01-13 07:47:38 -0800 | [diff] [blame] | 510 | |
Herb Derby | c1b482c | 2018-08-09 15:02:27 -0400 | [diff] [blame] | 511 | GrTextTarget* textTarget() { return fTextTarget.get(); } |
Brian Salomon | f18b1d8 | 2017-10-27 11:30:49 -0400 | [diff] [blame] | 512 | |
Robert Phillips | b520476 | 2019-06-19 14:12:13 -0400 | [diff] [blame] | 513 | #if GR_TEST_UTILS |
Greg Daniel | 46e366a | 2019-12-16 14:38:36 -0500 | [diff] [blame] | 514 | bool testingOnly_IsInstantiated() const { return fSurfaceProxy->isInstantiated(); } |
Chris Dalton | 6b98280 | 2019-06-27 13:53:46 -0600 | [diff] [blame] | 515 | void testingOnly_SetPreserveOpsOnFullClear() { fPreserveOpsOnFullClear_TestingOnly = true; } |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 516 | GrOpsTask* testingOnly_PeekLastOpsTask() { return fOpsTask.get(); } |
Robert Phillips | b520476 | 2019-06-19 14:12:13 -0400 | [diff] [blame] | 517 | #endif |
Robert Phillips | eaa8625 | 2016-11-08 13:49:39 +0000 | [diff] [blame] | 518 | |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 519 | private: |
Brian Salomon | f18b1d8 | 2017-10-27 11:30:49 -0400 | [diff] [blame] | 520 | class TextTarget; |
Michael Ludwig | 6132820 | 2019-06-19 14:48:58 +0000 | [diff] [blame] | 521 | enum class QuadOptimization; |
Brian Salomon | f18b1d8 | 2017-10-27 11:30:49 -0400 | [diff] [blame] | 522 | |
Chris Dalton | 7d6748e | 2019-03-13 00:34:52 -0600 | [diff] [blame] | 523 | GrAAType chooseAAType(GrAA); |
Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame] | 524 | |
Brian Salomon | 649a341 | 2017-03-09 13:50:43 -0500 | [diff] [blame] | 525 | friend class GrAtlasTextBlob; // for access to add[Mesh]DrawOp |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 526 | friend class GrClipStackClip; // for access to getOpsTask |
Chris Dalton | c4b4735 | 2019-08-23 10:10:36 -0600 | [diff] [blame] | 527 | friend class GrOnFlushResourceProvider; // for access to getOpsTask (http://skbug.com/9357) |
robertphillips | 55fdccc | 2016-06-06 06:16:20 -0700 | [diff] [blame] | 528 | |
Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 529 | friend class GrRenderTargetContextPriv; |
robertphillips | 976f5f0 | 2016-06-03 10:59:20 -0700 | [diff] [blame] | 530 | |
Brian Salomon | 42521e8 | 2016-12-07 16:44:58 -0500 | [diff] [blame] | 531 | // All the path renderers currently make their own ops |
Brian Salomon | 649a341 | 2017-03-09 13:50:43 -0500 | [diff] [blame] | 532 | friend class GrSoftwarePathRenderer; // for access to add[Mesh]DrawOp |
| 533 | friend class GrAAConvexPathRenderer; // for access to add[Mesh]DrawOp |
| 534 | friend class GrDashLinePathRenderer; // for access to add[Mesh]DrawOp |
| 535 | friend class GrAAHairLinePathRenderer; // for access to add[Mesh]DrawOp |
| 536 | friend class GrAALinearizingConvexPathRenderer; // for access to add[Mesh]DrawOp |
Jim Van Verth | 8301046 | 2017-03-16 08:45:39 -0400 | [diff] [blame] | 537 | friend class GrSmallPathRenderer; // for access to add[Mesh]DrawOp |
Brian Salomon | 649a341 | 2017-03-09 13:50:43 -0500 | [diff] [blame] | 538 | friend class GrDefaultPathRenderer; // for access to add[Mesh]DrawOp |
Brian Salomon | 649a341 | 2017-03-09 13:50:43 -0500 | [diff] [blame] | 539 | friend class GrStencilAndCoverPathRenderer; // for access to add[Mesh]DrawOp |
| 540 | friend class GrTessellatingPathRenderer; // for access to add[Mesh]DrawOp |
Chris Dalton | 9414c96 | 2018-06-14 10:14:50 -0600 | [diff] [blame] | 541 | friend class GrCCPerFlushResources; // for access to addDrawOp |
Chris Dalton | 1a325d2 | 2017-07-14 15:17:41 -0600 | [diff] [blame] | 542 | friend class GrCoverageCountingPathRenderer; // for access to addDrawOp |
Robert Phillips | 438d986 | 2019-11-14 12:46:05 -0500 | [diff] [blame] | 543 | friend class GrFillRectOp; // for access to addDrawOp |
Robert Phillips | e837e61 | 2019-11-15 11:02:50 -0500 | [diff] [blame] | 544 | friend class GrTextureOp; // for access to addDrawOp |
Robert Phillips | 438d986 | 2019-11-14 12:46:05 -0500 | [diff] [blame] | 545 | |
Greg Daniel | 46e366a | 2019-12-16 14:38:36 -0500 | [diff] [blame] | 546 | SkDEBUGCODE(void onValidate() const override;) |
Greg Daniel | a83de58 | 2019-10-22 09:33:25 -0400 | [diff] [blame] | 547 | |
| 548 | |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 549 | GrOpsTask::CanDiscardPreviousOps canDiscardPreviousOpsOnFullClear() const; |
Chris Dalton | 858cf23 | 2019-10-14 16:20:00 -0600 | [diff] [blame] | 550 | void setNeedsStencil(bool useMixedSamplesIfNotMSAA); |
Chris Dalton | 6b98280 | 2019-06-27 13:53:46 -0600 | [diff] [blame] | 551 | |
Brian Osman | 9a9baae | 2018-11-05 15:06:26 -0500 | [diff] [blame] | 552 | void internalClear(const GrFixedClip&, const SkPMColor4f&, CanClearFullscreen); |
Michael Ludwig | c39d0c8 | 2019-01-15 10:03:43 -0500 | [diff] [blame] | 553 | void internalStencilClear(const GrFixedClip&, bool insideStencilMask); |
csmartdalton | 29df760 | 2016-08-31 11:55:52 -0700 | [diff] [blame] | 554 | |
Brian Salomon | 82f4431 | 2017-01-11 13:42:54 -0500 | [diff] [blame] | 555 | // Only consumes the GrPaint if successful. |
robertphillips | 0009589 | 2016-02-29 13:50:40 -0800 | [diff] [blame] | 556 | bool drawFilledDRRect(const GrClip& clip, |
Brian Salomon | 82f4431 | 2017-01-11 13:42:54 -0500 | [diff] [blame] | 557 | GrPaint&& paint, |
Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame] | 558 | GrAA, |
robertphillips | 0009589 | 2016-02-29 13:50:40 -0800 | [diff] [blame] | 559 | const SkMatrix& viewMatrix, |
| 560 | const SkRRect& origOuter, |
| 561 | const SkRRect& origInner); |
| 562 | |
Michael Ludwig | 6132820 | 2019-06-19 14:48:58 +0000 | [diff] [blame] | 563 | // If the drawn quad's paint is a const blended color, provide it as a non-null pointer to |
| 564 | // 'constColor', which enables the draw-as-clear optimization. Otherwise it is assumed the paint |
| 565 | // requires some form of shading that invalidates using a clear op. |
| 566 | // |
| 567 | // The non-const pointers should be the original draw request on input, and will be updated as |
| 568 | // appropriate depending on the returned optimization level. |
| 569 | // |
Michael Ludwig | e08b443 | 2019-06-19 18:00:48 -0400 | [diff] [blame] | 570 | // 'stencilSettings' are provided merely for decision making purposes; When non-null, |
| 571 | // optimization strategies that submit special ops are avoided. |
Michael Ludwig | 6132820 | 2019-06-19 14:48:58 +0000 | [diff] [blame] | 572 | QuadOptimization attemptQuadOptimization(const GrClip& clip, |
| 573 | const SkPMColor4f* constColor, |
Michael Ludwig | e08b443 | 2019-06-19 18:00:48 -0400 | [diff] [blame] | 574 | const GrUserStencilSettings* stencilSettings, |
Michael Ludwig | 6132820 | 2019-06-19 14:48:58 +0000 | [diff] [blame] | 575 | GrAA* aa, |
| 576 | GrQuadAAFlags* edgeFlags, |
| 577 | GrQuad* deviceQuad, |
| 578 | GrQuad* localQuad); |
robertphillips | 4430239 | 2016-07-08 14:43:03 -0700 | [diff] [blame] | 579 | |
Michael Ludwig | 6132820 | 2019-06-19 14:48:58 +0000 | [diff] [blame] | 580 | // If stencil settings, 'ss', are non-null, AA controls MSAA or no AA. If they are null, then AA |
| 581 | // can choose between coverage, MSAA as per chooseAAType(). This will always attempt to apply |
| 582 | // quad optimizations, so all quad/rect public APIs should rely on this function for consistent |
| 583 | // clipping behavior. |
| 584 | void drawFilledQuad(const GrClip& clip, |
| 585 | GrPaint&& paint, |
| 586 | GrAA aa, |
| 587 | GrQuadAAFlags edgeFlags, |
| 588 | const GrQuad& deviceQuad, |
| 589 | const GrQuad& localQuad, |
| 590 | const GrUserStencilSettings* ss = nullptr); |
Brian Salomon | 7694b90 | 2019-06-18 21:00:21 +0000 | [diff] [blame] | 591 | |
Michael Ludwig | aee26ea | 2019-07-08 16:22:48 +0000 | [diff] [blame] | 592 | // Like drawFilledQuad but does not require using a GrPaint or FP for texturing |
| 593 | void drawTexturedQuad(const GrClip& clip, |
Greg Daniel | 549325c | 2019-10-30 16:19:20 -0400 | [diff] [blame] | 594 | GrSurfaceProxyView proxyView, |
Brian Salomon | fc11844 | 2019-11-22 19:09:27 -0500 | [diff] [blame] | 595 | SkAlphaType alphaType, |
Michael Ludwig | aee26ea | 2019-07-08 16:22:48 +0000 | [diff] [blame] | 596 | sk_sp<GrColorSpaceXform> textureXform, |
| 597 | GrSamplerState::Filter filter, |
| 598 | const SkPMColor4f& color, |
| 599 | SkBlendMode blendMode, |
| 600 | GrAA aa, |
| 601 | GrQuadAAFlags edgeFlags, |
| 602 | const GrQuad& deviceQuad, |
| 603 | const GrQuad& localQuad, |
| 604 | const SkRect* domain = nullptr); |
| 605 | |
Brian Salomon | 2fad74a | 2017-12-20 13:28:55 -0500 | [diff] [blame] | 606 | void drawShapeUsingPathRenderer(const GrClip&, GrPaint&&, GrAA, const SkMatrix&, |
| 607 | const GrShape&); |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 608 | |
Chris Dalton | 0875512 | 2019-08-05 16:13:47 -0600 | [diff] [blame] | 609 | void addOp(std::unique_ptr<GrOp>); |
| 610 | |
Brian Salomon | 348a037 | 2018-10-31 10:42:18 -0400 | [diff] [blame] | 611 | // Allows caller of addDrawOp to know which op list an op will be added to. |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 612 | using WillAddOpFn = void(GrOp*, uint32_t opsTaskID); |
Brian Salomon | 348a037 | 2018-10-31 10:42:18 -0400 | [diff] [blame] | 613 | // These perform processing specific to GrDrawOp-derived ops before recording them into an |
| 614 | // op list. Before adding the op to an op list the WillAddOpFn is called. Note that it |
| 615 | // will not be called in the event that the op is discarded. Moreover, the op may merge into |
| 616 | // another op after the function is called (either before addDrawOp returns or some time later). |
| 617 | void addDrawOp(const GrClip&, std::unique_ptr<GrDrawOp>, |
| 618 | const std::function<WillAddOpFn>& = std::function<WillAddOpFn>()); |
robertphillips | 2334fb6 | 2015-06-17 05:43:33 -0700 | [diff] [blame] | 619 | |
Robert Phillips | bf25d43 | 2017-04-07 10:08:53 -0400 | [diff] [blame] | 620 | // Makes a copy of the proxy if it is necessary for the draw and places the texture that should |
| 621 | // be used by GrXferProcessor to access the destination color in 'result'. If the return |
| 622 | // value is false then a texture copy could not be made. |
Greg Daniel | 524e28b | 2019-11-01 11:48:53 -0400 | [diff] [blame] | 623 | bool SK_WARN_UNUSED_RESULT setupDstProxyView(const GrClip&, const GrOp& op, |
| 624 | GrXferProcessor::DstProxyView* result); |
Brian Salomon | 467921e | 2017-03-06 16:17:12 -0500 | [diff] [blame] | 625 | |
Brian Salomon | 9241a6d | 2019-10-03 13:26:54 -0400 | [diff] [blame] | 626 | class AsyncReadResult; |
| 627 | |
Brian Salomon | 024bd00 | 2019-06-11 11:38:16 -0400 | [diff] [blame] | 628 | // The async read step of asyncRescaleAndReadPixels() |
| 629 | void asyncReadPixels(const SkIRect& rect, SkColorType colorType, ReadPixelsCallback callback, |
| 630 | ReadPixelsContext context); |
| 631 | |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 632 | GrOpsTask* getOpsTask(); |
robertphillips | a106c62 | 2015-10-16 09:07:06 -0700 | [diff] [blame] | 633 | |
Herb Derby | c1b482c | 2018-08-09 15:02:27 -0400 | [diff] [blame] | 634 | std::unique_ptr<GrTextTarget> fTextTarget; |
Greg Daniel | a83de58 | 2019-10-22 09:33:25 -0400 | [diff] [blame] | 635 | |
Greg Daniel | a83de58 | 2019-10-22 09:33:25 -0400 | [diff] [blame] | 636 | GrSwizzle fOutputSwizzle; |
robertphillips | a106c62 | 2015-10-16 09:07:06 -0700 | [diff] [blame] | 637 | |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 638 | // In MDB-mode the GrOpsTask can be closed by some other renderTargetContext that has picked |
| 639 | // it up. For this reason, the GrOpsTask should only ever be accessed via 'getOpsTask'. |
| 640 | sk_sp<GrOpsTask> fOpsTask; |
robertphillips | 2334fb6 | 2015-06-17 05:43:33 -0700 | [diff] [blame] | 641 | |
Brian Salomon | f18b1d8 | 2017-10-27 11:30:49 -0400 | [diff] [blame] | 642 | SkSurfaceProps fSurfaceProps; |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 643 | bool fManagedOpsTask; |
Robert Phillips | e305cc1f | 2016-12-14 12:19:05 -0500 | [diff] [blame] | 644 | |
Chris Dalton | effee20 | 2019-07-01 22:28:03 -0600 | [diff] [blame] | 645 | int fNumStencilSamples = 0; |
Chris Dalton | 6b98280 | 2019-06-27 13:53:46 -0600 | [diff] [blame] | 646 | #if GR_TEST_UTILS |
| 647 | bool fPreserveOpsOnFullClear_TestingOnly = false; |
| 648 | #endif |
| 649 | |
Robert Phillips | e305cc1f | 2016-12-14 12:19:05 -0500 | [diff] [blame] | 650 | typedef GrSurfaceContext INHERITED; |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 651 | }; |
| 652 | |
| 653 | #endif |