blob: f0d8eba4de40554b74b1f8534d8abe3832dbe9ed [file] [log] [blame]
robertphillipsea461502015-05-26 11:38:03 -07001/*
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 Osman11052242016-10-27 14:47:55 -04008#include "GrRenderTargetContext.h"
Brian Salomon6d4b65e2017-05-03 17:06:09 -04009#include "../private/GrAuditTrail.h"
Jim Van Verth3af1af92017-05-18 15:06:54 -040010#include "../private/SkShadowFlags.h"
Brian Salomon467921e2017-03-06 16:17:12 -050011#include "GrAppliedClip.h"
Greg Daniela5cb7812017-06-16 09:45:32 -040012#include "GrBackendSemaphore.h"
Brian Salomonf18b1d82017-10-27 11:30:49 -040013#include "GrBlurUtils.h"
Brian Salomon5ec9def2016-12-20 15:34:05 -050014#include "GrColor.h"
Robert Phillipse78b7252017-04-06 07:59:41 -040015#include "GrContextPriv.h"
robertphillips77a2e522015-10-17 07:43:27 -070016#include "GrDrawingManager.h"
csmartdalton02fa32c2016-08-19 13:29:27 -070017#include "GrFixedClip.h"
robertphillips714712b2016-08-04 06:20:45 -070018#include "GrGpuResourcePriv.h"
Robert Phillips9d6c64f2017-09-14 10:56:45 -040019#include "GrOpList.h"
robertphillipsea461502015-05-26 11:38:03 -070020#include "GrPathRenderer.h"
Brian Salomon57caa662017-10-18 12:21:05 +000021#include "GrQuad.h"
robertphillips2334fb62015-06-17 05:43:33 -070022#include "GrRenderTarget.h"
Brian Salomon5ec9def2016-12-20 15:34:05 -050023#include "GrRenderTargetContextPriv.h"
bsalomon473addf2015-10-02 07:49:05 -070024#include "GrResourceProvider.h"
Brian Salomon653f42f2018-07-10 10:07:31 -040025#include "GrShape.h"
Brian Salomon467921e2017-03-06 16:17:12 -050026#include "GrStencilAttachment.h"
Brian Salomon653f42f2018-07-10 10:07:31 -040027#include "GrStyle.h"
Brian Salomondcbb9d92017-07-19 10:53:20 -040028#include "GrTracing.h"
Jim Van Verth1af03d42017-07-31 09:34:58 -040029#include "SkDrawShadowInfo.h"
Herb Derby74c6ed32018-07-28 18:07:54 -040030#include "SkGlyphRun.h"
Brian Salomonf18b1d82017-10-27 11:30:49 -040031#include "SkGr.h"
Brian Salomon467921e2017-03-06 16:17:12 -050032#include "SkLatticeIter.h"
33#include "SkMatrixPriv.h"
Mike Reed242135a2018-02-22 13:41:39 -050034#include "SkRRectPriv.h"
Jim Van Verth34d6e4b2017-06-09 11:09:03 -040035#include "SkShadowUtils.h"
robertphillips2d70dcb2015-10-06 07:38:23 -070036#include "SkSurfacePriv.h"
Brian Salomon467921e2017-03-06 16:17:12 -050037#include "effects/GrRRectEffect.h"
Brian Salomonf18b1d82017-10-27 11:30:49 -040038#include "ops/GrAtlasTextOp.h"
Brian Salomon89527432016-12-16 09:52:16 -050039#include "ops/GrClearOp.h"
Robert Phillipsb9a02a12017-04-06 11:08:40 -040040#include "ops/GrClearStencilClipOp.h"
Robert Phillips65a88fa2017-08-08 08:36:22 -040041#include "ops/GrDebugMarkerOp.h"
Brian Salomon0f353322017-05-03 20:58:59 +000042#include "ops/GrDrawAtlasOp.h"
Brian Salomon6d4b65e2017-05-03 17:06:09 -040043#include "ops/GrDrawOp.h"
Brian Salomon89527432016-12-16 09:52:16 -050044#include "ops/GrDrawVerticesOp.h"
45#include "ops/GrLatticeOp.h"
46#include "ops/GrOp.h"
47#include "ops/GrOvalOpFactory.h"
48#include "ops/GrRectOpFactory.h"
49#include "ops/GrRegionOp.h"
Greg Daniela5cb7812017-06-16 09:45:32 -040050#include "ops/GrSemaphoreOp.h"
Brian Salomon89527432016-12-16 09:52:16 -050051#include "ops/GrShadowRRectOp.h"
Brian Salomon467921e2017-03-06 16:17:12 -050052#include "ops/GrStencilPathOp.h"
Brian Salomon34169692017-08-28 15:32:01 -040053#include "ops/GrTextureOp.h"
Herb Derby26cbe512018-05-24 14:39:01 -040054#include "text/GrTextContext.h"
Herb Derbyc1b482c2018-08-09 15:02:27 -040055#include "text/GrTextTarget.h"
Brian Salomonf18b1d82017-10-27 11:30:49 -040056
Herb Derby74c6ed32018-07-28 18:07:54 -040057
58
Herb Derbyc1b482c2018-08-09 15:02:27 -040059class GrRenderTargetContext::TextTarget : public GrTextTarget {
Brian Salomonf18b1d82017-10-27 11:30:49 -040060public:
61 TextTarget(GrRenderTargetContext* renderTargetContext)
Herb Derbyc1b482c2018-08-09 15:02:27 -040062 : GrTextTarget(renderTargetContext->width(), renderTargetContext->height(),
Brian Salomonf18b1d82017-10-27 11:30:49 -040063 renderTargetContext->colorSpaceInfo())
Herb Derby74c6ed32018-07-28 18:07:54 -040064 , fRenderTargetContext(renderTargetContext)
65 , fGlyphDrawer{*renderTargetContext}{}
Brian Salomonf18b1d82017-10-27 11:30:49 -040066
Robert Phillips7c525e62018-06-12 10:11:12 -040067 void addDrawOp(const GrClip& clip, std::unique_ptr<GrAtlasTextOp> op) override {
Brian Salomonf18b1d82017-10-27 11:30:49 -040068 fRenderTargetContext->addDrawOp(clip, std::move(op));
69 }
70
71 void drawPath(const GrClip& clip, const SkPath& path, const SkPaint& paint,
72 const SkMatrix& viewMatrix, const SkMatrix* pathMatrix,
Robert Phillips7c525e62018-06-12 10:11:12 -040073 const SkIRect& clipBounds) override {
Brian Salomonf18b1d82017-10-27 11:30:49 -040074 GrBlurUtils::drawPathWithMaskFilter(fRenderTargetContext->fContext, fRenderTargetContext,
75 clip, path, paint, viewMatrix, pathMatrix, clipBounds,
76 false);
77 }
78
79 void makeGrPaint(GrMaskFormat maskFormat, const SkPaint& skPaint, const SkMatrix& viewMatrix,
Robert Phillips7c525e62018-06-12 10:11:12 -040080 GrPaint* grPaint) override {
Brian Salomonf18b1d82017-10-27 11:30:49 -040081 GrContext* context = fRenderTargetContext->fContext;
82 const GrColorSpaceInfo& colorSpaceInfo = fRenderTargetContext->colorSpaceInfo();
83 if (kARGB_GrMaskFormat == maskFormat) {
84 SkPaintToGrPaintWithPrimitiveColor(context, colorSpaceInfo, skPaint, grPaint);
85 } else {
86 SkPaintToGrPaint(context, colorSpaceInfo, skPaint, viewMatrix, grPaint);
87 }
88 }
89
Robert Phillips7c525e62018-06-12 10:11:12 -040090 GrContext* getContext() override {
91 return fRenderTargetContext->fContext;
92 }
93
Herb Derby74c6ed32018-07-28 18:07:54 -040094 SkGlyphRunListDrawer* glyphDrawer() override {
95 return &fGlyphDrawer;
96 }
97
Brian Salomonf18b1d82017-10-27 11:30:49 -040098private:
99 GrRenderTargetContext* fRenderTargetContext;
Herb Derby74c6ed32018-07-28 18:07:54 -0400100 SkGlyphRunListDrawer fGlyphDrawer;
101
Brian Salomonf18b1d82017-10-27 11:30:49 -0400102};
joshualittbc907352016-01-13 06:45:40 -0800103
Robert Phillips72152832017-01-25 17:31:35 -0500104#define ASSERT_OWNED_RESOURCE(R) SkASSERT(!(R) || (R)->getContext() == this->drawingManager()->getContext())
joshualitt1de610a2016-01-06 08:26:09 -0800105#define ASSERT_SINGLE_OWNER \
Robert Phillipsa90aa2b2017-04-10 08:19:26 -0400106 SkDEBUGCODE(GrSingleOwner::AutoEnforce debug_SingleOwner(this->singleOwner());)
robertphillips391395d2016-03-02 09:26:36 -0800107#define ASSERT_SINGLE_OWNER_PRIV \
Robert Phillipsa90aa2b2017-04-10 08:19:26 -0400108 SkDEBUGCODE(GrSingleOwner::AutoEnforce debug_SingleOwner(fRenderTargetContext->singleOwner());)
Robert Phillips72152832017-01-25 17:31:35 -0500109#define RETURN_IF_ABANDONED if (this->drawingManager()->wasAbandoned()) { return; }
110#define RETURN_IF_ABANDONED_PRIV if (fRenderTargetContext->drawingManager()->wasAbandoned()) { return; }
111#define RETURN_FALSE_IF_ABANDONED if (this->drawingManager()->wasAbandoned()) { return false; }
112#define RETURN_FALSE_IF_ABANDONED_PRIV if (fRenderTargetContext->drawingManager()->wasAbandoned()) { return false; }
113#define RETURN_NULL_IF_ABANDONED if (this->drawingManager()->wasAbandoned()) { return nullptr; }
robertphillipsea461502015-05-26 11:38:03 -0700114
Brian Salomone225b562017-06-14 13:00:03 -0400115//////////////////////////////////////////////////////////////////////////////
116
117GrAAType GrChooseAAType(GrAA aa, GrFSAAType fsaaType, GrAllowMixedSamples allowMixedSamples,
118 const GrCaps& caps) {
119 if (GrAA::kNo == aa) {
120 // On some devices we cannot disable MSAA if it is enabled so we make the AA type reflect
121 // that.
122 if (fsaaType == GrFSAAType::kUnifiedMSAA && !caps.multisampleDisableSupport()) {
123 return GrAAType::kMSAA;
124 }
125 return GrAAType::kNone;
126 }
127 switch (fsaaType) {
128 case GrFSAAType::kNone:
129 return GrAAType::kCoverage;
130 case GrFSAAType::kUnifiedMSAA:
131 return GrAAType::kMSAA;
132 case GrFSAAType::kMixedSamples:
133 return GrAllowMixedSamples::kYes == allowMixedSamples ? GrAAType::kMixedSamples
134 : GrAAType::kCoverage;
135 }
Ben Wagnerb4aab9a2017-08-16 10:53:04 -0400136 SK_ABORT("Unexpected fsaa type");
Brian Salomone225b562017-06-14 13:00:03 -0400137 return GrAAType::kNone;
138}
139
140//////////////////////////////////////////////////////////////////////////////
141
robertphillipsea461502015-05-26 11:38:03 -0700142class AutoCheckFlush {
143public:
halcanary9d524f22016-03-29 09:03:52 -0700144 AutoCheckFlush(GrDrawingManager* drawingManager) : fDrawingManager(drawingManager) {
robertphillips77a2e522015-10-17 07:43:27 -0700145 SkASSERT(fDrawingManager);
146 }
bsalomonb77a9072016-09-07 10:02:04 -0700147 ~AutoCheckFlush() { fDrawingManager->flushIfNecessary(); }
robertphillipsea461502015-05-26 11:38:03 -0700148
149private:
robertphillips77a2e522015-10-17 07:43:27 -0700150 GrDrawingManager* fDrawingManager;
robertphillipsea461502015-05-26 11:38:03 -0700151};
152
Brian Osman11052242016-10-27 14:47:55 -0400153bool GrRenderTargetContext::wasAbandoned() const {
Robert Phillips72152832017-01-25 17:31:35 -0500154 return this->drawingManager()->wasAbandoned();
robertphillips7761d612016-05-16 09:14:53 -0700155}
156
Robert Phillipsf2361d22016-10-25 14:20:06 -0400157// In MDB mode the reffing of the 'getLastOpList' call's result allows in-progress
Brian Osman11052242016-10-27 14:47:55 -0400158// GrOpLists to be picked up and added to by renderTargetContexts lower in the call
Robert Phillipsf2361d22016-10-25 14:20:06 -0400159// stack. When this occurs with a closed GrOpList, a new one will be allocated
Brian Osman11052242016-10-27 14:47:55 -0400160// when the renderTargetContext attempts to use it (via getOpList).
161GrRenderTargetContext::GrRenderTargetContext(GrContext* context,
162 GrDrawingManager* drawingMgr,
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400163 sk_sp<GrRenderTargetProxy> rtp,
Brian Osman11052242016-10-27 14:47:55 -0400164 sk_sp<SkColorSpace> colorSpace,
165 const SkSurfaceProps* surfaceProps,
166 GrAuditTrail* auditTrail,
Robert Phillips941d1442017-06-14 16:37:02 -0400167 GrSingleOwner* singleOwner,
168 bool managedOpList)
Brian Salomonf3569f02017-10-24 12:52:33 -0400169 : GrSurfaceContext(context, drawingMgr, rtp->config(), std::move(colorSpace), auditTrail,
170 singleOwner)
171 , fRenderTargetProxy(std::move(rtp))
172 , fOpList(sk_ref_sp(fRenderTargetProxy->getLastRenderTargetOpList()))
Brian Salomonf3569f02017-10-24 12:52:33 -0400173 , fSurfaceProps(SkSurfacePropsCopyOrDefault(surfaceProps))
174 , fManagedOpList(managedOpList) {
Robert Phillips4150eea2018-02-07 17:08:21 -0500175 GrResourceProvider* resourceProvider = context->contextPriv().resourceProvider();
176 if (resourceProvider && !resourceProvider->explicitlyAllocateGPUResources()) {
177 // MDB TODO: to ensure all resources still get allocated in the correct order in the hybrid
178 // world we need to get the correct opList here so that it, in turn, can grab and hold
179 // its rendertarget.
180 this->getRTOpList();
181 }
182
Brian Salomonf18b1d82017-10-27 11:30:49 -0400183 fTextTarget.reset(new TextTarget(this));
robertphillips2e1e51f2015-10-15 08:01:48 -0700184 SkDEBUGCODE(this->validate();)
robertphillipsea461502015-05-26 11:38:03 -0700185}
186
robertphillips2e1e51f2015-10-15 08:01:48 -0700187#ifdef SK_DEBUG
Brian Osman11052242016-10-27 14:47:55 -0400188void GrRenderTargetContext::validate() const {
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400189 SkASSERT(fRenderTargetProxy);
190 fRenderTargetProxy->validate(fContext);
robertphillipsa106c622015-10-16 09:07:06 -0700191
Robert Phillipsf2361d22016-10-25 14:20:06 -0400192 if (fOpList && !fOpList->isClosed()) {
Robert Phillipsdc83b892017-04-13 12:23:54 -0400193 SkASSERT(fRenderTargetProxy->getLastOpList() == fOpList.get());
robertphillipsa106c622015-10-16 09:07:06 -0700194 }
robertphillips2e1e51f2015-10-15 08:01:48 -0700195}
196#endif
197
Brian Osman11052242016-10-27 14:47:55 -0400198GrRenderTargetContext::~GrRenderTargetContext() {
joshualitt1de610a2016-01-06 08:26:09 -0800199 ASSERT_SINGLE_OWNER
robertphillipsa106c622015-10-16 09:07:06 -0700200}
201
Robert Phillipsf200a902017-01-30 13:27:37 -0500202GrTextureProxy* GrRenderTargetContext::asTextureProxy() {
Robert Phillipseaa86252016-11-08 13:49:39 +0000203 return fRenderTargetProxy->asTextureProxy();
204}
205
Greg Daniele252f082017-10-23 16:05:23 -0400206const GrTextureProxy* GrRenderTargetContext::asTextureProxy() const {
207 return fRenderTargetProxy->asTextureProxy();
208}
209
Robert Phillipsf200a902017-01-30 13:27:37 -0500210sk_sp<GrTextureProxy> GrRenderTargetContext::asTextureProxyRef() {
211 return sk_ref_sp(fRenderTargetProxy->asTextureProxy());
212}
213
Greg Daniele252f082017-10-23 16:05:23 -0400214GrMipMapped GrRenderTargetContext::mipMapped() const {
215 if (const GrTextureProxy* proxy = this->asTextureProxy()) {
216 return proxy->mipMapped();
217 }
218 return GrMipMapped::kNo;
219}
220
Robert Phillips2de8cfa2017-06-28 10:33:41 -0400221GrRenderTargetOpList* GrRenderTargetContext::getRTOpList() {
joshualitt1de610a2016-01-06 08:26:09 -0800222 ASSERT_SINGLE_OWNER
robertphillipsa106c622015-10-16 09:07:06 -0700223 SkDEBUGCODE(this->validate();)
224
Robert Phillipsf2361d22016-10-25 14:20:06 -0400225 if (!fOpList || fOpList->isClosed()) {
Robert Phillips941d1442017-06-14 16:37:02 -0400226 fOpList = this->drawingManager()->newRTOpList(fRenderTargetProxy.get(), fManagedOpList);
robertphillipsa106c622015-10-16 09:07:06 -0700227 }
228
Robert Phillipsdc83b892017-04-13 12:23:54 -0400229 return fOpList.get();
robertphillipsa106c622015-10-16 09:07:06 -0700230}
231
Robert Phillips2de8cfa2017-06-28 10:33:41 -0400232GrOpList* GrRenderTargetContext::getOpList() {
233 return this->getRTOpList();
robertphillipsea461502015-05-26 11:38:03 -0700234}
235
Herb Derbycddab252018-07-16 11:19:04 -0400236void GrRenderTargetContext::drawGlyphRunList(
237 const GrClip& clip, const SkMatrix& viewMatrix,
Herb Derbyb935cf82018-07-26 16:54:18 -0400238 const SkGlyphRunList& blob, const SkIRect& clipBounds) {
joshualitt1de610a2016-01-06 08:26:09 -0800239 ASSERT_SINGLE_OWNER
robertphillips2d70dcb2015-10-06 07:38:23 -0700240 RETURN_IF_ABANDONED
robertphillips2e1e51f2015-10-15 08:01:48 -0700241 SkDEBUGCODE(this->validate();)
Herb Derbycddab252018-07-16 11:19:04 -0400242 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawGlyphRunList", fContext);
robertphillips2d70dcb2015-10-06 07:38:23 -0700243
Herb Derby26cbe512018-05-24 14:39:01 -0400244 GrTextContext* atlasTextContext = this->drawingManager()->getTextContext();
Herb Derbycddab252018-07-16 11:19:04 -0400245 atlasTextContext->drawGlyphRunList(fContext, fTextTarget.get(), clip, viewMatrix,
246 fSurfaceProps, blob, clipBounds);
robertphillipsea461502015-05-26 11:38:03 -0700247}
248
Brian Osman11052242016-10-27 14:47:55 -0400249void GrRenderTargetContext::discard() {
joshualitt1de610a2016-01-06 08:26:09 -0800250 ASSERT_SINGLE_OWNER
robertphillipsea461502015-05-26 11:38:03 -0700251 RETURN_IF_ABANDONED
robertphillips2e1e51f2015-10-15 08:01:48 -0700252 SkDEBUGCODE(this->validate();)
Robert Phillips6b47c7d2017-08-29 07:24:09 -0400253 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "discard", fContext);
robertphillips2e1e51f2015-10-15 08:01:48 -0700254
Robert Phillips72152832017-01-25 17:31:35 -0500255 AutoCheckFlush acf(this->drawingManager());
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400256
Robert Phillips380b90c2017-08-30 07:41:07 -0400257 this->getRTOpList()->discard();
robertphillipsea461502015-05-26 11:38:03 -0700258}
259
Brian Osman11052242016-10-27 14:47:55 -0400260void GrRenderTargetContext::clear(const SkIRect* rect,
261 const GrColor color,
Chris Dalton344e9032017-12-11 15:42:09 -0700262 CanClearFullscreen canClearFullscreen) {
joshualitt1de610a2016-01-06 08:26:09 -0800263 ASSERT_SINGLE_OWNER
robertphillipsea461502015-05-26 11:38:03 -0700264 RETURN_IF_ABANDONED
robertphillips2e1e51f2015-10-15 08:01:48 -0700265 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400266 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "clear", fContext);
robertphillipsea461502015-05-26 11:38:03 -0700267
Robert Phillips72152832017-01-25 17:31:35 -0500268 AutoCheckFlush acf(this->drawingManager());
Chris Dalton344e9032017-12-11 15:42:09 -0700269 this->internalClear(rect ? GrFixedClip(*rect) : GrFixedClip::Disabled(), color,
270 canClearFullscreen);
csmartdalton29df7602016-08-31 11:55:52 -0700271}
robertphillips9199a9f2016-07-13 07:48:43 -0700272
Robert Phillips784b7bf2016-12-09 13:35:02 -0500273void GrRenderTargetContextPriv::absClear(const SkIRect* clearRect, const GrColor color) {
274 ASSERT_SINGLE_OWNER_PRIV
275 RETURN_IF_ABANDONED_PRIV
276 SkDEBUGCODE(fRenderTargetContext->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400277 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContextPriv", "absClear",
278 fRenderTargetContext->fContext);
Robert Phillips784b7bf2016-12-09 13:35:02 -0500279
Robert Phillips72152832017-01-25 17:31:35 -0500280 AutoCheckFlush acf(fRenderTargetContext->drawingManager());
Robert Phillips784b7bf2016-12-09 13:35:02 -0500281
Brian Salomonbb5711a2017-05-17 13:49:59 -0400282 SkIRect rtRect = SkIRect::MakeWH(fRenderTargetContext->fRenderTargetProxy->worstCaseWidth(),
283 fRenderTargetContext->fRenderTargetProxy->worstCaseHeight());
Robert Phillips784b7bf2016-12-09 13:35:02 -0500284
285 if (clearRect) {
286 if (clearRect->contains(rtRect)) {
287 clearRect = nullptr; // full screen
288 } else {
289 if (!rtRect.intersect(*clearRect)) {
290 return;
291 }
292 }
293 }
294
295 // TODO: in a post-MDB world this should be handled at the OpList level.
296 // An op-list that is initially cleared and has no other ops should receive an
297 // extra draw.
Brian Salomon43f8bf02017-10-18 08:33:29 -0400298 // This path doesn't handle coalescing of full screen clears b.c. it
299 // has to clear the entire render target - not just the content area.
300 // It could be done but will take more finagling.
Robert Phillips7c525e62018-06-12 10:11:12 -0400301 std::unique_ptr<GrOp> op(GrClearOp::Make(fRenderTargetContext->fContext, rtRect,
302 color, !clearRect));
Brian Salomon43f8bf02017-10-18 08:33:29 -0400303 if (!op) {
304 return;
Robert Phillips784b7bf2016-12-09 13:35:02 -0500305 }
Brian Salomon43f8bf02017-10-18 08:33:29 -0400306 fRenderTargetContext->getRTOpList()->addOp(std::move(op), *fRenderTargetContext->caps());
Robert Phillips784b7bf2016-12-09 13:35:02 -0500307}
308
Brian Osman11052242016-10-27 14:47:55 -0400309void GrRenderTargetContextPriv::clear(const GrFixedClip& clip,
310 const GrColor color,
Chris Dalton344e9032017-12-11 15:42:09 -0700311 CanClearFullscreen canClearFullscreen) {
csmartdalton29df7602016-08-31 11:55:52 -0700312 ASSERT_SINGLE_OWNER_PRIV
313 RETURN_IF_ABANDONED_PRIV
Brian Osman11052242016-10-27 14:47:55 -0400314 SkDEBUGCODE(fRenderTargetContext->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400315 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContextPriv", "clear",
316 fRenderTargetContext->fContext);
csmartdalton29df7602016-08-31 11:55:52 -0700317
Robert Phillips72152832017-01-25 17:31:35 -0500318 AutoCheckFlush acf(fRenderTargetContext->drawingManager());
Chris Dalton344e9032017-12-11 15:42:09 -0700319 fRenderTargetContext->internalClear(clip, color, canClearFullscreen);
csmartdalton29df7602016-08-31 11:55:52 -0700320}
321
Brian Osman11052242016-10-27 14:47:55 -0400322void GrRenderTargetContext::internalClear(const GrFixedClip& clip,
323 const GrColor color,
Chris Dalton344e9032017-12-11 15:42:09 -0700324 CanClearFullscreen canClearFullscreen) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700325 bool isFull = false;
326 if (!clip.hasWindowRectangles()) {
Brian Salomond818ebf2018-07-02 14:08:49 +0000327 isFull = !clip.scissorEnabled() ||
Chris Dalton344e9032017-12-11 15:42:09 -0700328 (CanClearFullscreen::kYes == canClearFullscreen &&
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400329 this->caps()->preferFullscreenClears()) ||
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700330 clip.scissorRect().contains(SkIRect::MakeWH(this->width(), this->height()));
331 }
robertphillips9199a9f2016-07-13 07:48:43 -0700332
Brian Salomon43f8bf02017-10-18 08:33:29 -0400333 if (isFull) {
Robert Phillips7c525e62018-06-12 10:11:12 -0400334 this->getRTOpList()->fullClear(fContext, color);
robertphillips9199a9f2016-07-13 07:48:43 -0700335 } else {
Robert Phillips7c525e62018-06-12 10:11:12 -0400336 std::unique_ptr<GrOp> op(GrClearOp::Make(fContext, clip, color, this->asSurfaceProxy()));
Brian Salomon42521e82016-12-07 16:44:58 -0500337 if (!op) {
csmartdalton29df7602016-08-31 11:55:52 -0700338 return;
339 }
Robert Phillips2de8cfa2017-06-28 10:33:41 -0400340 this->getRTOpList()->addOp(std::move(op), *this->caps());
robertphillips9199a9f2016-07-13 07:48:43 -0700341 }
robertphillipsea461502015-05-26 11:38:03 -0700342}
343
Brian Osman11052242016-10-27 14:47:55 -0400344void GrRenderTargetContext::drawPaint(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -0500345 GrPaint&& paint,
Brian Osman11052242016-10-27 14:47:55 -0400346 const SkMatrix& viewMatrix) {
joshualitt1de610a2016-01-06 08:26:09 -0800347 ASSERT_SINGLE_OWNER
robertphillipsea461502015-05-26 11:38:03 -0700348 RETURN_IF_ABANDONED
robertphillips2e1e51f2015-10-15 08:01:48 -0700349 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400350 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawPaint", fContext);
robertphillips2e1e51f2015-10-15 08:01:48 -0700351
robertphillipsea461502015-05-26 11:38:03 -0700352 // set rect to be big enough to fill the space, but not super-huge, so we
353 // don't overflow fixed-point implementations
robertphillips13a7eee2016-08-31 15:06:24 -0700354
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400355 SkRect r = fRenderTargetProxy->getBoundsRect();
robertphillipsea461502015-05-26 11:38:03 -0700356
bsalomoncb31e512016-08-26 10:48:19 -0700357 SkRRect rrect;
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500358 GrAA aa;
bsalomoncb31e512016-08-26 10:48:19 -0700359 // Check if we can replace a clipRRect()/drawPaint() with a drawRRect(). We only do the
360 // transformation for non-rect rrects. Rects caused a performance regression on an Android
361 // test that needs investigation. We also skip cases where there are fragment processors
362 // because they may depend on having correct local coords and this path draws in device space
363 // without a local matrix.
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500364 if (!paint.numTotalFragmentProcessors() && clip.isRRect(r, &rrect, &aa) && !rrect.isRect()) {
Brian Salomon82f44312017-01-11 13:42:54 -0500365 this->drawRRect(GrNoClip(), std::move(paint), aa, SkMatrix::I(), rrect,
366 GrStyle::SimpleFill());
bsalomoncb31e512016-08-26 10:48:19 -0700367 return;
368 }
369
robertphillipsea461502015-05-26 11:38:03 -0700370
371 bool isPerspective = viewMatrix.hasPerspective();
372
373 // We attempt to map r by the inverse matrix and draw that. mapRect will
374 // map the four corners and bound them with a new rect. This will not
375 // produce a correct result for some perspective matrices.
376 if (!isPerspective) {
reeda39667c2016-08-22 06:39:49 -0700377 if (!SkMatrixPriv::InverseMapRect(viewMatrix, &r, r)) {
robertphillipsea461502015-05-26 11:38:03 -0700378 return;
379 }
Brian Salomon82f44312017-01-11 13:42:54 -0500380 this->drawRect(clip, std::move(paint), GrAA::kNo, viewMatrix, r);
robertphillipsea461502015-05-26 11:38:03 -0700381 } else {
382 SkMatrix localMatrix;
383 if (!viewMatrix.invert(&localMatrix)) {
robertphillipsea461502015-05-26 11:38:03 -0700384 return;
385 }
386
Robert Phillips72152832017-01-25 17:31:35 -0500387 AutoCheckFlush acf(this->drawingManager());
robertphillipsea461502015-05-26 11:38:03 -0700388
Brian Salomonbaaf4392017-06-15 09:59:23 -0400389 std::unique_ptr<GrDrawOp> op = GrRectOpFactory::MakeNonAAFillWithLocalMatrix(
Robert Phillips7c525e62018-06-12 10:11:12 -0400390 fContext, std::move(paint), SkMatrix::I(), localMatrix, r, GrAAType::kNone);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400391 this->addDrawOp(clip, std::move(op));
robertphillipsea461502015-05-26 11:38:03 -0700392 }
393}
394
robertphillipsea461502015-05-26 11:38:03 -0700395static inline bool rect_contains_inclusive(const SkRect& rect, const SkPoint& point) {
396 return point.fX >= rect.fLeft && point.fX <= rect.fRight &&
397 point.fY >= rect.fTop && point.fY <= rect.fBottom;
398}
399
csmartdalton97f6cd52016-07-13 13:37:08 -0700400// Attempts to crop a rect and optional local rect to the clip boundaries.
401// Returns false if the draw can be skipped entirely.
robertphillips13a7eee2016-08-31 15:06:24 -0700402static bool crop_filled_rect(int width, int height, const GrClip& clip,
csmartdalton97f6cd52016-07-13 13:37:08 -0700403 const SkMatrix& viewMatrix, SkRect* rect,
404 SkRect* localRect = nullptr) {
405 if (!viewMatrix.rectStaysRect()) {
406 return true;
407 }
408
csmartdalton97f6cd52016-07-13 13:37:08 -0700409 SkIRect clipDevBounds;
410 SkRect clipBounds;
csmartdalton97f6cd52016-07-13 13:37:08 -0700411
robertphillips13a7eee2016-08-31 15:06:24 -0700412 clip.getConservativeBounds(width, height, &clipDevBounds);
reeda39667c2016-08-22 06:39:49 -0700413 if (!SkMatrixPriv::InverseMapRect(viewMatrix, &clipBounds, SkRect::Make(clipDevBounds))) {
414 return false;
415 }
csmartdalton97f6cd52016-07-13 13:37:08 -0700416
417 if (localRect) {
418 if (!rect->intersects(clipBounds)) {
419 return false;
420 }
421 const SkScalar dx = localRect->width() / rect->width();
422 const SkScalar dy = localRect->height() / rect->height();
423 if (clipBounds.fLeft > rect->fLeft) {
424 localRect->fLeft += (clipBounds.fLeft - rect->fLeft) * dx;
425 rect->fLeft = clipBounds.fLeft;
426 }
427 if (clipBounds.fTop > rect->fTop) {
428 localRect->fTop += (clipBounds.fTop - rect->fTop) * dy;
429 rect->fTop = clipBounds.fTop;
430 }
431 if (clipBounds.fRight < rect->fRight) {
432 localRect->fRight -= (rect->fRight - clipBounds.fRight) * dx;
433 rect->fRight = clipBounds.fRight;
434 }
435 if (clipBounds.fBottom < rect->fBottom) {
436 localRect->fBottom -= (rect->fBottom - clipBounds.fBottom) * dy;
437 rect->fBottom = clipBounds.fBottom;
438 }
439 return true;
440 }
441
442 return rect->intersect(clipBounds);
443}
444
Brian Osman11052242016-10-27 14:47:55 -0400445bool GrRenderTargetContext::drawFilledRect(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -0500446 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500447 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -0400448 const SkMatrix& viewMatrix,
449 const SkRect& rect,
450 const GrUserStencilSettings* ss) {
csmartdalton97f6cd52016-07-13 13:37:08 -0700451 SkRect croppedRect = rect;
Robert Phillips784b7bf2016-12-09 13:35:02 -0500452 if (!crop_filled_rect(this->width(), this->height(), clip, viewMatrix, &croppedRect)) {
csmartdalton97f6cd52016-07-13 13:37:08 -0700453 return true;
454 }
robertphillips44302392016-07-08 14:43:03 -0700455
Brian Salomon7c8460e2017-05-12 11:36:10 -0400456 GrAAType aaType = this->chooseAAType(aa, GrAllowMixedSamples::kNo);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400457 std::unique_ptr<GrDrawOp> op;
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500458 if (GrAAType::kCoverage == aaType) {
Robert Phillips7c525e62018-06-12 10:11:12 -0400459 op = GrRectOpFactory::MakeAAFill(fContext, std::move(paint), viewMatrix, croppedRect, ss);
robertphillips391395d2016-03-02 09:26:36 -0800460 } else {
Robert Phillips7c525e62018-06-12 10:11:12 -0400461 op = GrRectOpFactory::MakeNonAAFill(fContext, std::move(paint), viewMatrix, croppedRect,
462 aaType, ss);
robertphillips391395d2016-03-02 09:26:36 -0800463 }
Brian Salomonbaaf4392017-06-15 09:59:23 -0400464 if (!op) {
465 return false;
466 }
467 this->addDrawOp(clip, std::move(op));
468 return true;
robertphillips391395d2016-03-02 09:26:36 -0800469}
470
Brian Osman11052242016-10-27 14:47:55 -0400471void GrRenderTargetContext::drawRect(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -0500472 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500473 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -0400474 const SkMatrix& viewMatrix,
475 const SkRect& rect,
476 const GrStyle* style) {
bsalomon6663acf2016-05-10 09:14:17 -0700477 if (!style) {
478 style = &GrStyle::SimpleFill();
479 }
joshualitt1de610a2016-01-06 08:26:09 -0800480 ASSERT_SINGLE_OWNER
robertphillipsea461502015-05-26 11:38:03 -0700481 RETURN_IF_ABANDONED
robertphillips2e1e51f2015-10-15 08:01:48 -0700482 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400483 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawRect", fContext);
robertphillips2e1e51f2015-10-15 08:01:48 -0700484
bsalomon6663acf2016-05-10 09:14:17 -0700485 // Path effects should've been devolved to a path in SkGpuDevice
486 SkASSERT(!style->pathEffect());
robertphillipsea461502015-05-26 11:38:03 -0700487
Robert Phillips72152832017-01-25 17:31:35 -0500488 AutoCheckFlush acf(this->drawingManager());
robertphillipsea461502015-05-26 11:38:03 -0700489
bsalomon6663acf2016-05-10 09:14:17 -0700490 const SkStrokeRec& stroke = style->strokeRec();
Robert Phillipsc90b4db2018-04-23 15:12:00 +0000491 if (stroke.getStyle() == SkStrokeRec::kFill_Style && !paint.numCoverageFragmentProcessors()) {
Brian Salomon43f8bf02017-10-18 08:33:29 -0400492 // Check if this is a full RT draw and can be replaced with a clear. We don't bother
493 // checking cases where the RT is fully inside a stroke.
494 SkRect rtRect = fRenderTargetProxy->getBoundsRect();
495 // Does the clip contain the entire RT?
496 if (clip.quickContains(rtRect)) {
497 SkMatrix invM;
498 if (!viewMatrix.invert(&invM)) {
499 return;
500 }
501 // Does the rect bound the RT?
Brian Salomona33b67c2018-05-17 10:42:14 -0400502 GrQuad quad(rtRect, invM);
Brian Salomon43f8bf02017-10-18 08:33:29 -0400503 if (rect_contains_inclusive(rect, quad.point(0)) &&
504 rect_contains_inclusive(rect, quad.point(1)) &&
505 rect_contains_inclusive(rect, quad.point(2)) &&
506 rect_contains_inclusive(rect, quad.point(3))) {
507 // Will it blend?
508 GrColor clearColor;
509 if (paint.isConstantBlendedColor(&clearColor)) {
Chris Dalton344e9032017-12-11 15:42:09 -0700510 this->clear(nullptr, clearColor,
511 GrRenderTargetContext::CanClearFullscreen::kYes);
robertphillipsea461502015-05-26 11:38:03 -0700512 return;
513 }
514 }
515 }
robertphillips44302392016-07-08 14:43:03 -0700516
Brian Salomon82f44312017-01-11 13:42:54 -0500517 if (this->drawFilledRect(clip, std::move(paint), aa, viewMatrix, rect, nullptr)) {
robertphillips44302392016-07-08 14:43:03 -0700518 return;
519 }
bsalomona7d85ba2016-07-06 11:54:59 -0700520 } else if (stroke.getStyle() == SkStrokeRec::kStroke_Style ||
521 stroke.getStyle() == SkStrokeRec::kHairline_Style) {
522 if ((!rect.width() || !rect.height()) &&
523 SkStrokeRec::kHairline_Style != stroke.getStyle()) {
524 SkScalar r = stroke.getWidth() / 2;
525 // TODO: Move these stroke->fill fallbacks to GrShape?
526 switch (stroke.getJoin()) {
527 case SkPaint::kMiter_Join:
Brian Salomon82f44312017-01-11 13:42:54 -0500528 this->drawRect(
529 clip, std::move(paint), aa, viewMatrix,
530 {rect.fLeft - r, rect.fTop - r, rect.fRight + r, rect.fBottom + r},
531 &GrStyle::SimpleFill());
bsalomona7d85ba2016-07-06 11:54:59 -0700532 return;
533 case SkPaint::kRound_Join:
534 // Raster draws nothing when both dimensions are empty.
535 if (rect.width() || rect.height()){
536 SkRRect rrect = SkRRect::MakeRectXY(rect.makeOutset(r, r), r, r);
Brian Salomon82f44312017-01-11 13:42:54 -0500537 this->drawRRect(clip, std::move(paint), aa, viewMatrix, rrect,
538 GrStyle::SimpleFill());
bsalomona7d85ba2016-07-06 11:54:59 -0700539 return;
540 }
541 case SkPaint::kBevel_Join:
542 if (!rect.width()) {
Brian Salomon82f44312017-01-11 13:42:54 -0500543 this->drawRect(clip, std::move(paint), aa, viewMatrix,
bsalomona7d85ba2016-07-06 11:54:59 -0700544 {rect.fLeft - r, rect.fTop, rect.fRight + r, rect.fBottom},
545 &GrStyle::SimpleFill());
546 } else {
Brian Salomon82f44312017-01-11 13:42:54 -0500547 this->drawRect(clip, std::move(paint), aa, viewMatrix,
bsalomona7d85ba2016-07-06 11:54:59 -0700548 {rect.fLeft, rect.fTop - r, rect.fRight, rect.fBottom + r},
549 &GrStyle::SimpleFill());
550 }
551 return;
552 }
553 }
robertphillips44302392016-07-08 14:43:03 -0700554
Brian Salomonbaaf4392017-06-15 09:59:23 -0400555 std::unique_ptr<GrDrawOp> op;
robertphillips44302392016-07-08 14:43:03 -0700556
Brian Salomon7c8460e2017-05-12 11:36:10 -0400557 GrAAType aaType = this->chooseAAType(aa, GrAllowMixedSamples::kNo);
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500558 if (GrAAType::kCoverage == aaType) {
cdaltonbb539482016-01-04 09:48:25 -0800559 // The stroke path needs the rect to remain axis aligned (no rotation or skew).
560 if (viewMatrix.rectStaysRect()) {
Robert Phillips7c525e62018-06-12 10:11:12 -0400561 op = GrRectOpFactory::MakeAAStroke(fContext, std::move(paint), viewMatrix, rect,
562 stroke);
cdaltonbb539482016-01-04 09:48:25 -0800563 }
robertphillipsea461502015-05-26 11:38:03 -0700564 } else {
Robert Phillips7c525e62018-06-12 10:11:12 -0400565 op = GrRectOpFactory::MakeNonAAStroke(fContext, std::move(paint), viewMatrix, rect,
566 stroke, aaType);
robertphillips391395d2016-03-02 09:26:36 -0800567 }
robertphillips4bc31812016-03-01 12:22:49 -0800568
Brian Salomon42521e82016-12-07 16:44:58 -0500569 if (op) {
Brian Salomonbaaf4392017-06-15 09:59:23 -0400570 this->addDrawOp(clip, std::move(op));
robertphillips44302392016-07-08 14:43:03 -0700571 return;
robertphillips4bc31812016-03-01 12:22:49 -0800572 }
robertphillips4bc31812016-03-01 12:22:49 -0800573 }
Brian Salomon2fad74a2017-12-20 13:28:55 -0500574 this->drawShapeUsingPathRenderer(clip, std::move(paint), aa, viewMatrix, GrShape(rect, *style));
robertphillipsea461502015-05-26 11:38:03 -0700575}
576
Robert Phillipsec2249f2016-11-09 08:54:35 -0500577int GrRenderTargetContextPriv::maxWindowRectangles() const {
578 return fRenderTargetContext->fRenderTargetProxy->maxWindowRectangles(
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400579 *fRenderTargetContext->caps());
Robert Phillipsec2249f2016-11-09 08:54:35 -0500580}
581
Jim Van Verth6a40abc2017-11-02 16:56:09 +0000582void GrRenderTargetContextPriv::clearStencilClip(const GrFixedClip& clip, bool insideStencilMask) {
robertphillips976f5f02016-06-03 10:59:20 -0700583 ASSERT_SINGLE_OWNER_PRIV
584 RETURN_IF_ABANDONED_PRIV
Brian Osman11052242016-10-27 14:47:55 -0400585 SkDEBUGCODE(fRenderTargetContext->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400586 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContextPriv", "clearStencilClip",
587 fRenderTargetContext->fContext);
robertphillips976f5f02016-06-03 10:59:20 -0700588
Robert Phillips72152832017-01-25 17:31:35 -0500589 AutoCheckFlush acf(fRenderTargetContext->drawingManager());
Robert Phillipsb9a02a12017-04-06 11:08:40 -0400590
Robert Phillips7c525e62018-06-12 10:11:12 -0400591 GrRenderTargetProxy* rtProxy = fRenderTargetContext->fRenderTargetProxy.get();
592 std::unique_ptr<GrOp> op(GrClearStencilClipOp::Make(fRenderTargetContext->fContext,
593 clip, insideStencilMask, rtProxy));
Robert Phillipsb9a02a12017-04-06 11:08:40 -0400594 if (!op) {
Robert Phillipse60ad622016-11-17 10:22:48 -0500595 return;
596 }
Robert Phillips2de8cfa2017-06-28 10:33:41 -0400597 fRenderTargetContext->getRTOpList()->addOp(std::move(op), *fRenderTargetContext->caps());
robertphillips976f5f02016-06-03 10:59:20 -0700598}
599
Chris Daltonbbfd5162017-11-07 13:35:22 -0700600void GrRenderTargetContextPriv::stencilPath(const GrHardClip& clip,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500601 GrAAType aaType,
Brian Osman11052242016-10-27 14:47:55 -0400602 const SkMatrix& viewMatrix,
603 const GrPath* path) {
Brian Salomon467921e2017-03-06 16:17:12 -0500604 ASSERT_SINGLE_OWNER_PRIV
605 RETURN_IF_ABANDONED_PRIV
606 SkDEBUGCODE(fRenderTargetContext->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400607 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContextPriv", "stencilPath",
608 fRenderTargetContext->fContext);
Brian Salomon467921e2017-03-06 16:17:12 -0500609
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500610 SkASSERT(aaType != GrAAType::kCoverage);
Brian Salomon467921e2017-03-06 16:17:12 -0500611
612 bool useHWAA = GrAATypeIsHW(aaType);
613 // TODO: extract portions of checkDraw that are relevant to path stenciling.
614 SkASSERT(path);
615 SkASSERT(fRenderTargetContext->caps()->shaderCaps()->pathRenderingSupport());
616
617 // FIXME: Use path bounds instead of this WAR once
618 // https://bugs.chromium.org/p/skia/issues/detail?id=5640 is resolved.
619 SkRect bounds = SkRect::MakeIWH(fRenderTargetContext->width(), fRenderTargetContext->height());
620
621 // Setup clip
Chris Daltonbbfd5162017-11-07 13:35:22 -0700622 GrAppliedHardClip appliedClip;
623 if (!clip.apply(fRenderTargetContext->width(), fRenderTargetContext->height(), &appliedClip,
624 &bounds)) {
Brian Salomon467921e2017-03-06 16:17:12 -0500625 return;
626 }
627
Robert Phillips65048132017-08-10 08:44:49 -0400628 fRenderTargetContext->setNeedsStencil();
Brian Salomon467921e2017-03-06 16:17:12 -0500629
Robert Phillips7c525e62018-06-12 10:11:12 -0400630 std::unique_ptr<GrOp> op = GrStencilPathOp::Make(fRenderTargetContext->fContext,
631 viewMatrix,
Brian Salomon467921e2017-03-06 16:17:12 -0500632 useHWAA,
633 path->getFillType(),
634 appliedClip.hasStencilClip(),
Brian Salomon467921e2017-03-06 16:17:12 -0500635 appliedClip.scissorState(),
Brian Salomon467921e2017-03-06 16:17:12 -0500636 path);
Robert Phillipsb9a02a12017-04-06 11:08:40 -0400637 if (!op) {
638 return;
639 }
Brian Salomon97180af2017-03-14 13:42:58 -0400640 op->setClippedBounds(bounds);
Robert Phillips2de8cfa2017-06-28 10:33:41 -0400641 fRenderTargetContext->getRTOpList()->addOp(std::move(op), *fRenderTargetContext->caps());
robertphillips976f5f02016-06-03 10:59:20 -0700642}
643
Chris Daltonbbfd5162017-11-07 13:35:22 -0700644void GrRenderTargetContextPriv::stencilRect(const GrHardClip& clip,
Brian Osman11052242016-10-27 14:47:55 -0400645 const GrUserStencilSettings* ss,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500646 GrAAType aaType,
Brian Osman11052242016-10-27 14:47:55 -0400647 const SkMatrix& viewMatrix,
648 const SkRect& rect) {
robertphillips976f5f02016-06-03 10:59:20 -0700649 ASSERT_SINGLE_OWNER_PRIV
650 RETURN_IF_ABANDONED_PRIV
Brian Osman11052242016-10-27 14:47:55 -0400651 SkDEBUGCODE(fRenderTargetContext->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400652 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContextPriv", "stencilRect",
653 fRenderTargetContext->fContext);
654
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500655 SkASSERT(GrAAType::kCoverage != aaType);
Robert Phillips72152832017-01-25 17:31:35 -0500656 AutoCheckFlush acf(fRenderTargetContext->drawingManager());
robertphillips976f5f02016-06-03 10:59:20 -0700657
658 GrPaint paint;
Brian Salomona1633922017-01-09 11:46:10 -0500659 paint.setXPFactory(GrDisableColorXPFactory::Get());
Robert Phillips7c525e62018-06-12 10:11:12 -0400660 std::unique_ptr<GrDrawOp> op = GrRectOpFactory::MakeNonAAFill(fRenderTargetContext->fContext,
661 std::move(paint), viewMatrix,
662 rect, aaType, ss);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400663 fRenderTargetContext->addDrawOp(clip, std::move(op));
robertphillips976f5f02016-06-03 10:59:20 -0700664}
665
Chris Daltonbbfd5162017-11-07 13:35:22 -0700666bool GrRenderTargetContextPriv::drawAndStencilRect(const GrHardClip& clip,
Brian Osman11052242016-10-27 14:47:55 -0400667 const GrUserStencilSettings* ss,
668 SkRegion::Op op,
669 bool invert,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500670 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -0400671 const SkMatrix& viewMatrix,
672 const SkRect& rect) {
robertphillips391395d2016-03-02 09:26:36 -0800673 ASSERT_SINGLE_OWNER_PRIV
674 RETURN_FALSE_IF_ABANDONED_PRIV
Brian Osman11052242016-10-27 14:47:55 -0400675 SkDEBUGCODE(fRenderTargetContext->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400676 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContextPriv", "drawAndStencilRect",
677 fRenderTargetContext->fContext);
robertphillips391395d2016-03-02 09:26:36 -0800678
Robert Phillips72152832017-01-25 17:31:35 -0500679 AutoCheckFlush acf(fRenderTargetContext->drawingManager());
robertphillips391395d2016-03-02 09:26:36 -0800680
681 GrPaint paint;
robertphillips391395d2016-03-02 09:26:36 -0800682 paint.setCoverageSetOpXPFactory(op, invert);
683
Brian Salomon82f44312017-01-11 13:42:54 -0500684 if (fRenderTargetContext->drawFilledRect(clip, std::move(paint), aa, viewMatrix, rect, ss)) {
robertphillips391395d2016-03-02 09:26:36 -0800685 return true;
686 }
robertphillips391395d2016-03-02 09:26:36 -0800687 SkPath path;
688 path.setIsVolatile(true);
689 path.addRect(rect);
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500690 return this->drawAndStencilPath(clip, ss, op, invert, aa, viewMatrix, path);
robertphillips391395d2016-03-02 09:26:36 -0800691}
692
Brian Osman11052242016-10-27 14:47:55 -0400693void GrRenderTargetContext::fillRectToRect(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -0500694 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500695 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -0400696 const SkMatrix& viewMatrix,
697 const SkRect& rectToDraw,
698 const SkRect& localRect) {
joshualitt1de610a2016-01-06 08:26:09 -0800699 ASSERT_SINGLE_OWNER
robertphillipsea461502015-05-26 11:38:03 -0700700 RETURN_IF_ABANDONED
robertphillips2e1e51f2015-10-15 08:01:48 -0700701 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400702 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "fillRectToRect", fContext);
robertphillipsea461502015-05-26 11:38:03 -0700703
csmartdalton97f6cd52016-07-13 13:37:08 -0700704 SkRect croppedRect = rectToDraw;
705 SkRect croppedLocalRect = localRect;
robertphillips13a7eee2016-08-31 15:06:24 -0700706 if (!crop_filled_rect(this->width(), this->height(), clip, viewMatrix,
707 &croppedRect, &croppedLocalRect)) {
csmartdalton97f6cd52016-07-13 13:37:08 -0700708 return;
709 }
710
Robert Phillips72152832017-01-25 17:31:35 -0500711 AutoCheckFlush acf(this->drawingManager());
csmartdaltona7f29642016-07-07 08:49:11 -0700712
Brian Salomon7c8460e2017-05-12 11:36:10 -0400713 GrAAType aaType = this->chooseAAType(aa, GrAllowMixedSamples::kNo);
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500714 if (GrAAType::kCoverage != aaType) {
Brian Salomonbaaf4392017-06-15 09:59:23 -0400715 std::unique_ptr<GrDrawOp> op = GrRectOpFactory::MakeNonAAFillWithLocalRect(
Robert Phillips7c525e62018-06-12 10:11:12 -0400716 fContext, std::move(paint), viewMatrix, croppedRect, croppedLocalRect, aaType);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400717 this->addDrawOp(clip, std::move(op));
csmartdaltonfc49d562016-07-26 17:05:47 -0700718 return;
joshualitt04194f32016-01-13 10:08:27 -0800719 }
bsalomonbb243832016-07-22 07:10:19 -0700720
Brian Salomonbaaf4392017-06-15 09:59:23 -0400721 std::unique_ptr<GrDrawOp> op = GrRectOpFactory::MakeAAFillWithLocalRect(
Robert Phillips7c525e62018-06-12 10:11:12 -0400722 fContext, std::move(paint), viewMatrix, croppedRect, croppedLocalRect);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400723 if (op) {
724 this->addDrawOp(clip, std::move(op));
csmartdaltonfc49d562016-07-26 17:05:47 -0700725 return;
726 }
727
728 SkMatrix viewAndUnLocalMatrix;
729 if (!viewAndUnLocalMatrix.setRectToRect(localRect, rectToDraw, SkMatrix::kFill_ScaleToFit)) {
730 SkDebugf("fillRectToRect called with empty local matrix.\n");
731 return;
732 }
733 viewAndUnLocalMatrix.postConcat(viewMatrix);
734
Brian Salomon2fad74a2017-12-20 13:28:55 -0500735 this->drawShapeUsingPathRenderer(clip, std::move(paint), aa, viewAndUnLocalMatrix,
736 GrShape(localRect));
joshualittb6b513b2015-08-21 10:25:18 -0700737}
738
Brian Salomon34169692017-08-28 15:32:01 -0400739static bool must_filter(const SkRect& src, const SkRect& dst, const SkMatrix& ctm) {
740 // We don't currently look for 90 degree rotations, mirroring, or downscales that sample at
741 // texel centers.
742 if (!ctm.isTranslate()) {
743 return true;
744 }
745 if (src.width() != dst.width() || src.height() != dst.height()) {
746 return true;
747 }
748 // Check that the device space rectangle's fractional offset is the same as the src rectangle,
749 // and that therefore integers in the src image fall on integers in device space.
750 SkScalar x = ctm.getTranslateX(), y = ctm.getTranslateY();
751 x += dst.fLeft; y += dst.fTop;
752 x -= src.fLeft; y -= src.fTop;
753 return !SkScalarIsInt(x) || !SkScalarIsInt(y);
754}
755
Brian Salomonbe3c1d22018-05-21 12:54:39 -0400756void GrRenderTargetContext::drawTexture(const GrClip& clip, sk_sp<GrTextureProxy> proxy,
757 GrSamplerState::Filter filter, GrColor color,
758 const SkRect& srcRect, const SkRect& dstRect, GrAA aa,
Brian Salomonb80ffee2018-05-23 16:39:39 -0400759 SkCanvas::SrcRectConstraint constraint,
Brian Salomonbe3c1d22018-05-21 12:54:39 -0400760 const SkMatrix& viewMatrix,
Brian Osman3ebd3542018-07-30 14:36:53 -0400761 sk_sp<GrColorSpaceXform> textureColorSpaceXform,
762 sk_sp<GrColorSpaceXform> paintColorSpaceXform) {
Brian Salomon34169692017-08-28 15:32:01 -0400763 ASSERT_SINGLE_OWNER
764 RETURN_IF_ABANDONED
765 SkDEBUGCODE(this->validate();)
Brian Salomonbe3c1d22018-05-21 12:54:39 -0400766 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawTexture", fContext);
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400767 if (filter != GrSamplerState::Filter::kNearest && !must_filter(srcRect, dstRect, viewMatrix)) {
768 filter = GrSamplerState::Filter::kNearest;
Brian Salomon34169692017-08-28 15:32:01 -0400769 }
Brian Salomond8eb7b62018-05-25 10:08:05 -0400770 GrAAType aaType = this->chooseAAType(aa, GrAllowMixedSamples::kNo);
771 if (constraint == SkCanvas::kStrict_SrcRectConstraint) {
772 // No need to use a texture domain with nearest filtering unless there is AA bloating.
773 // Also, no need if the srcRect contains the entire texture.
774 if (filter == GrSamplerState::Filter::kNearest && aaType != GrAAType::kCoverage) {
775 constraint = SkCanvas::kFast_SrcRectConstraint;
776 } else if (srcRect.contains(proxy->getWorstCaseBoundsRect())) {
777 constraint = SkCanvas::kFast_SrcRectConstraint;
778 }
779 }
Brian Salomonff9d6d32017-08-30 10:27:49 -0400780 SkRect clippedDstRect = dstRect;
781 SkRect clippedSrcRect = srcRect;
782 if (!crop_filled_rect(this->width(), this->height(), clip, viewMatrix, &clippedDstRect,
783 &clippedSrcRect)) {
784 return;
785 }
Robert Phillips7c525e62018-06-12 10:11:12 -0400786 this->addDrawOp(clip, GrTextureOp::Make(fContext, std::move(proxy), filter, color,
787 clippedSrcRect, clippedDstRect, aaType, constraint,
Brian Osman3ebd3542018-07-30 14:36:53 -0400788 viewMatrix, std::move(textureColorSpaceXform),
789 std::move(paintColorSpaceXform)));
Brian Salomon34169692017-08-28 15:32:01 -0400790}
791
Brian Osman11052242016-10-27 14:47:55 -0400792void GrRenderTargetContext::fillRectWithLocalMatrix(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -0500793 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500794 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -0400795 const SkMatrix& viewMatrix,
796 const SkRect& rectToDraw,
797 const SkMatrix& localMatrix) {
joshualitt1de610a2016-01-06 08:26:09 -0800798 ASSERT_SINGLE_OWNER
joshualittb6b513b2015-08-21 10:25:18 -0700799 RETURN_IF_ABANDONED
robertphillips2e1e51f2015-10-15 08:01:48 -0700800 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400801 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "fillRectWithLocalMatrix", fContext);
joshualittb6b513b2015-08-21 10:25:18 -0700802
csmartdalton97f6cd52016-07-13 13:37:08 -0700803 SkRect croppedRect = rectToDraw;
robertphillips13a7eee2016-08-31 15:06:24 -0700804 if (!crop_filled_rect(this->width(), this->height(), clip, viewMatrix, &croppedRect)) {
csmartdalton97f6cd52016-07-13 13:37:08 -0700805 return;
806 }
807
Robert Phillips72152832017-01-25 17:31:35 -0500808 AutoCheckFlush acf(this->drawingManager());
csmartdaltona7f29642016-07-07 08:49:11 -0700809
Brian Salomon7c8460e2017-05-12 11:36:10 -0400810 GrAAType aaType = this->chooseAAType(aa, GrAllowMixedSamples::kNo);
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500811 if (GrAAType::kCoverage != aaType) {
Brian Salomonbaaf4392017-06-15 09:59:23 -0400812 std::unique_ptr<GrDrawOp> op = GrRectOpFactory::MakeNonAAFillWithLocalMatrix(
Robert Phillips7c525e62018-06-12 10:11:12 -0400813 fContext, std::move(paint), viewMatrix, localMatrix, croppedRect, aaType);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400814 this->addDrawOp(clip, std::move(op));
csmartdaltonfc49d562016-07-26 17:05:47 -0700815 return;
bsalomonc55271f2015-11-09 11:55:57 -0800816 }
robertphillips4bc31812016-03-01 12:22:49 -0800817
Brian Salomonbaaf4392017-06-15 09:59:23 -0400818 std::unique_ptr<GrDrawOp> op = GrRectOpFactory::MakeAAFillWithLocalMatrix(
Robert Phillips7c525e62018-06-12 10:11:12 -0400819 fContext, std::move(paint), viewMatrix, localMatrix, croppedRect);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400820 if (op) {
821 this->addDrawOp(clip, std::move(op));
csmartdaltonfc49d562016-07-26 17:05:47 -0700822 return;
823 }
824
825 SkMatrix viewAndUnLocalMatrix;
826 if (!localMatrix.invert(&viewAndUnLocalMatrix)) {
827 SkDebugf("fillRectWithLocalMatrix called with degenerate local matrix.\n");
828 return;
829 }
830 viewAndUnLocalMatrix.postConcat(viewMatrix);
831
832 SkPath path;
833 path.setIsVolatile(true);
834 path.addRect(rectToDraw);
835 path.transform(localMatrix);
Brian Salomon2fad74a2017-12-20 13:28:55 -0500836 this->drawShapeUsingPathRenderer(clip, std::move(paint), aa, viewAndUnLocalMatrix,
837 GrShape(path));
robertphillipsea461502015-05-26 11:38:03 -0700838}
839
Brian Osman11052242016-10-27 14:47:55 -0400840void GrRenderTargetContext::drawVertices(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -0500841 GrPaint&& paint,
Brian Osman11052242016-10-27 14:47:55 -0400842 const SkMatrix& viewMatrix,
Brian Osmanae0c50c2017-05-25 16:56:34 -0400843 sk_sp<SkVertices> vertices,
Ruiqi Mao4ec72f72018-07-10 17:21:07 -0400844 const SkMatrix bones[],
845 int boneCount,
Brian Osmanae0c50c2017-05-25 16:56:34 -0400846 GrPrimitiveType* overridePrimType) {
Brian Salomon199fb872017-02-06 09:41:10 -0500847 ASSERT_SINGLE_OWNER
848 RETURN_IF_ABANDONED
849 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400850 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawVertices", fContext);
Brian Salomon199fb872017-02-06 09:41:10 -0500851
852 AutoCheckFlush acf(this->drawingManager());
853
854 SkASSERT(vertices);
Brian Salomonc2f42542017-07-12 14:11:22 -0400855 GrAAType aaType = this->chooseAAType(GrAA::kNo, GrAllowMixedSamples::kNo);
Brian Salomonf3569f02017-10-24 12:52:33 -0400856 std::unique_ptr<GrDrawOp> op = GrDrawVerticesOp::Make(
Ruiqi Mao4ec72f72018-07-10 17:21:07 -0400857 fContext, std::move(paint), std::move(vertices), bones, boneCount, viewMatrix, aaType,
Brian Salomonf3569f02017-10-24 12:52:33 -0400858 this->colorSpaceInfo().refColorSpaceXformFromSRGB(), overridePrimType);
Brian Salomonc2f42542017-07-12 14:11:22 -0400859 this->addDrawOp(clip, std::move(op));
robertphillipsea461502015-05-26 11:38:03 -0700860}
861
862///////////////////////////////////////////////////////////////////////////////
863
Brian Osman11052242016-10-27 14:47:55 -0400864void GrRenderTargetContext::drawAtlas(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -0500865 GrPaint&& paint,
Brian Osman11052242016-10-27 14:47:55 -0400866 const SkMatrix& viewMatrix,
867 int spriteCount,
868 const SkRSXform xform[],
869 const SkRect texRect[],
870 const SkColor colors[]) {
joshualitt1de610a2016-01-06 08:26:09 -0800871 ASSERT_SINGLE_OWNER
jvanverth31ff7622015-08-07 10:09:28 -0700872 RETURN_IF_ABANDONED
robertphillips2e1e51f2015-10-15 08:01:48 -0700873 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400874 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawAtlas", fContext);
robertphillips2e1e51f2015-10-15 08:01:48 -0700875
Robert Phillips72152832017-01-25 17:31:35 -0500876 AutoCheckFlush acf(this->drawingManager());
halcanary9d524f22016-03-29 09:03:52 -0700877
Brian Salomon0088f942017-07-12 11:51:27 -0400878 GrAAType aaType = this->chooseAAType(GrAA::kNo, GrAllowMixedSamples::kNo);
Robert Phillips7c525e62018-06-12 10:11:12 -0400879 std::unique_ptr<GrDrawOp> op = GrDrawAtlasOp::Make(fContext, std::move(paint), viewMatrix,
880 aaType, spriteCount, xform, texRect, colors);
Brian Salomon0088f942017-07-12 11:51:27 -0400881 this->addDrawOp(clip, std::move(op));
jvanverth31ff7622015-08-07 10:09:28 -0700882}
883
884///////////////////////////////////////////////////////////////////////////////
885
Brian Osman11052242016-10-27 14:47:55 -0400886void GrRenderTargetContext::drawRRect(const GrClip& origClip,
Brian Salomon82f44312017-01-11 13:42:54 -0500887 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500888 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -0400889 const SkMatrix& viewMatrix,
890 const SkRRect& rrect,
891 const GrStyle& style) {
joshualitt1de610a2016-01-06 08:26:09 -0800892 ASSERT_SINGLE_OWNER
robertphillipsea461502015-05-26 11:38:03 -0700893 RETURN_IF_ABANDONED
robertphillips2e1e51f2015-10-15 08:01:48 -0700894 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400895 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawRRect", fContext);
Robert Phillips85290802018-07-02 13:14:28 -0400896
897 const SkStrokeRec& stroke = style.strokeRec();
898 if (stroke.getStyle() == SkStrokeRec::kFill_Style && rrect.isEmpty()) {
robertphillipsea461502015-05-26 11:38:03 -0700899 return;
900 }
901
bsalomon7f0d9f32016-08-15 14:49:10 -0700902 GrNoClip noclip;
903 const GrClip* clip = &origClip;
904#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
905 // The Android framework frequently clips rrects to themselves where the clip is non-aa and the
Brian Salomon42521e82016-12-07 16:44:58 -0500906 // draw is aa. Since our lower level clip code works from op bounds, which are SkRects, it
bsalomon7f0d9f32016-08-15 14:49:10 -0700907 // doesn't detect that the clip can be ignored (modulo antialiasing). The following test
908 // attempts to mitigate the stencil clip cost but will only help when the entire clip stack
909 // can be ignored. We'd prefer to fix this in the framework by removing the clips calls.
910 SkRRect devRRect;
911 if (rrect.transform(viewMatrix, &devRRect) && clip->quickContains(devRRect)) {
912 clip = &noclip;
913 }
914#endif
bsalomon6663acf2016-05-10 09:14:17 -0700915 SkASSERT(!style.pathEffect()); // this should've been devolved to a path in SkGpuDevice
ksakamotoec7f2ac2016-07-05 03:54:53 -0700916
Robert Phillips72152832017-01-25 17:31:35 -0500917 AutoCheckFlush acf(this->drawingManager());
csmartdaltona7f29642016-07-07 08:49:11 -0700918
Brian Salomonea26d6b2018-01-23 20:33:21 +0000919 GrAAType aaType = this->chooseAAType(aa, GrAllowMixedSamples::kNo);
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500920 if (GrAAType::kCoverage == aaType) {
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400921 const GrShaderCaps* shaderCaps = this->caps()->shaderCaps();
Robert Phillips7c525e62018-06-12 10:11:12 -0400922 std::unique_ptr<GrDrawOp> op = GrOvalOpFactory::MakeRRectOp(fContext,
923 std::move(paint),
Brian Salomonea26d6b2018-01-23 20:33:21 +0000924 viewMatrix,
925 rrect,
926 stroke,
927 shaderCaps);
Brian Salomon42521e82016-12-07 16:44:58 -0500928 if (op) {
Brian Salomon05441c42017-05-15 16:45:49 -0400929 this->addDrawOp(*clip, std::move(op));
robertphillipsb56f9272016-02-25 11:03:52 -0800930 return;
931 }
robertphillipsea461502015-05-26 11:38:03 -0700932 }
robertphillipsb56f9272016-02-25 11:03:52 -0800933
Brian Salomon2fad74a2017-12-20 13:28:55 -0500934 this->drawShapeUsingPathRenderer(*clip, std::move(paint), aa, viewMatrix,
935 GrShape(rrect, style));
robertphillipsea461502015-05-26 11:38:03 -0700936}
937
Jim Van Verthc5903412016-11-17 15:27:09 -0500938///////////////////////////////////////////////////////////////////////////////
939
Jim Van Verth3af1af92017-05-18 15:06:54 -0400940static SkPoint3 map(const SkMatrix& m, const SkPoint3& pt) {
941 SkPoint3 result;
942 m.mapXY(pt.fX, pt.fY, (SkPoint*)&result.fX);
943 result.fZ = pt.fZ;
944 return result;
945}
946
947bool GrRenderTargetContext::drawFastShadow(const GrClip& clip,
Jim Van Verth3af1af92017-05-18 15:06:54 -0400948 const SkMatrix& viewMatrix,
949 const SkPath& path,
950 const SkDrawShadowRec& rec) {
Jim Van Verthc5903412016-11-17 15:27:09 -0500951 ASSERT_SINGLE_OWNER
Jim Van Verth3af1af92017-05-18 15:06:54 -0400952 if (this->drawingManager()->wasAbandoned()) {
953 return true;
954 }
Jim Van Verthc5903412016-11-17 15:27:09 -0500955 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400956 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawFastShadow", fContext);
Jim Van Verth3af1af92017-05-18 15:06:54 -0400957
958 // check z plane
959 bool tiltZPlane = SkToBool(!SkScalarNearlyZero(rec.fZPlaneParams.fX) ||
960 !SkScalarNearlyZero(rec.fZPlaneParams.fY));
961 bool skipAnalytic = SkToBool(rec.fFlags & SkShadowFlags::kGeometricOnly_ShadowFlag);
962 if (tiltZPlane || skipAnalytic || !viewMatrix.rectStaysRect() || !viewMatrix.isSimilarity()) {
963 return false;
964 }
965
966 SkRRect rrect;
967 SkRect rect;
968 // we can only handle rects, circles, and rrects with circular corners
Mike Reed242135a2018-02-22 13:41:39 -0500969 bool isRRect = path.isRRect(&rrect) && SkRRectPriv::IsSimpleCircular(rrect) &&
Jim Van Verth3af1af92017-05-18 15:06:54 -0400970 rrect.radii(SkRRect::kUpperLeft_Corner).fX > SK_ScalarNearlyZero;
971 if (!isRRect &&
972 path.isOval(&rect) && SkScalarNearlyEqual(rect.width(), rect.height()) &&
973 rect.width() > SK_ScalarNearlyZero) {
974 rrect.setOval(rect);
975 isRRect = true;
976 }
977 if (!isRRect && path.isRect(&rect)) {
978 rrect.setRect(rect);
979 isRRect = true;
980 }
981
982 if (!isRRect) {
983 return false;
984 }
985
Jim Van Verthc5903412016-11-17 15:27:09 -0500986 if (rrect.isEmpty()) {
Jim Van Verth3af1af92017-05-18 15:06:54 -0400987 return true;
Jim Van Verthc5903412016-11-17 15:27:09 -0500988 }
989
Robert Phillips72152832017-01-25 17:31:35 -0500990 AutoCheckFlush acf(this->drawingManager());
Jim Van Verthc5903412016-11-17 15:27:09 -0500991
Jim Van Verth3af1af92017-05-18 15:06:54 -0400992 // transform light
993 SkPoint3 devLightPos = map(viewMatrix, rec.fLightPos);
994
995 // 1/scale
996 SkScalar devToSrcScale = viewMatrix.isScaleTranslate() ?
997 SkScalarInvert(viewMatrix[SkMatrix::kMScaleX]) :
998 sk_float_rsqrt(viewMatrix[SkMatrix::kMScaleX] * viewMatrix[SkMatrix::kMScaleX] +
999 viewMatrix[SkMatrix::kMSkewX] * viewMatrix[SkMatrix::kMSkewX]);
1000
1001 SkScalar occluderHeight = rec.fZPlaneParams.fZ;
Jim Van Verth3af1af92017-05-18 15:06:54 -04001002 bool transparent = SkToBool(rec.fFlags & SkShadowFlags::kTransparentOccluder_ShadowFlag);
1003
Jim Van Verthb1b80f72018-01-18 15:19:13 -05001004 if (SkColorGetA(rec.fAmbientColor) > 0) {
Jim Van Verth1af03d42017-07-31 09:34:58 -04001005 SkScalar devSpaceInsetWidth = SkDrawShadowMetrics::AmbientBlurRadius(occluderHeight);
1006 const SkScalar umbraRecipAlpha = SkDrawShadowMetrics::AmbientRecipAlpha(occluderHeight);
1007 const SkScalar devSpaceAmbientBlur = devSpaceInsetWidth * umbraRecipAlpha;
Jim Van Verth3af1af92017-05-18 15:06:54 -04001008
1009 // Outset the shadow rrect to the border of the penumbra
1010 SkScalar ambientPathOutset = devSpaceInsetWidth * devToSrcScale;
1011 SkRRect ambientRRect;
1012 SkRect outsetRect = rrect.rect().makeOutset(ambientPathOutset, ambientPathOutset);
1013 // If the rrect was an oval then its outset will also be one.
1014 // We set it explicitly to avoid errors.
1015 if (rrect.isOval()) {
1016 ambientRRect = SkRRect::MakeOval(outsetRect);
1017 } else {
Mike Reed242135a2018-02-22 13:41:39 -05001018 SkScalar outsetRad = SkRRectPriv::GetSimpleRadii(rrect).fX + ambientPathOutset;
Jim Van Verth3af1af92017-05-18 15:06:54 -04001019 ambientRRect = SkRRect::MakeRectXY(outsetRect, outsetRad, outsetRad);
1020 }
1021
Jim Van Verthb1b80f72018-01-18 15:19:13 -05001022 GrColor ambientColor = SkColorToPremulGrColor(rec.fAmbientColor);
Jim Van Verth3af1af92017-05-18 15:06:54 -04001023 if (transparent) {
1024 // set a large inset to force a fill
1025 devSpaceInsetWidth = ambientRRect.width();
1026 }
Jim Van Verth39e71652018-04-23 18:08:45 +00001027 // the fraction of the blur we want to apply is devSpaceInsetWidth/devSpaceAmbientBlur,
1028 // which is just 1/umbraRecipAlpha.
1029 SkScalar blurClamp = SkScalarInvert(umbraRecipAlpha);
1030
Robert Phillips7c525e62018-06-12 10:11:12 -04001031 std::unique_ptr<GrDrawOp> op = GrShadowRRectOp::Make(fContext,
1032 ambientColor,
1033 viewMatrix,
Brian Salomon05969092017-07-13 11:20:51 -04001034 ambientRRect,
1035 devSpaceAmbientBlur,
Jim Van Verth39e71652018-04-23 18:08:45 +00001036 devSpaceInsetWidth,
1037 blurClamp);
Brian Salomon05969092017-07-13 11:20:51 -04001038 SkASSERT(op);
1039 this->addDrawOp(clip, std::move(op));
Jim Van Verthc5903412016-11-17 15:27:09 -05001040 }
Jim Van Verth3af1af92017-05-18 15:06:54 -04001041
Jim Van Verthb1b80f72018-01-18 15:19:13 -05001042 if (SkColorGetA(rec.fSpotColor) > 0) {
Jim Van Verth1af03d42017-07-31 09:34:58 -04001043 SkScalar devSpaceSpotBlur;
1044 SkScalar spotScale;
1045 SkVector spotOffset;
1046 SkDrawShadowMetrics::GetSpotParams(occluderHeight, devLightPos.fX, devLightPos.fY,
1047 devLightPos.fZ, rec.fLightRadius,
1048 &devSpaceSpotBlur, &spotScale, &spotOffset);
1049 // handle scale of radius due to CTM
Jim Van Verth3af1af92017-05-18 15:06:54 -04001050 const SkScalar srcSpaceSpotBlur = devSpaceSpotBlur * devToSrcScale;
1051
Jim Van Verth3af1af92017-05-18 15:06:54 -04001052 // Adjust translate for the effect of the scale.
1053 spotOffset.fX += spotScale*viewMatrix[SkMatrix::kMTransX];
1054 spotOffset.fY += spotScale*viewMatrix[SkMatrix::kMTransY];
1055 // This offset is in dev space, need to transform it into source space.
1056 SkMatrix ctmInverse;
1057 if (viewMatrix.invert(&ctmInverse)) {
1058 ctmInverse.mapPoints(&spotOffset, 1);
1059 } else {
1060 // Since the matrix is a similarity, this should never happen, but just in case...
1061 SkDebugf("Matrix is degenerate. Will not render spot shadow correctly!\n");
1062 SkASSERT(false);
1063 }
1064
1065 // Compute the transformed shadow rrect
1066 SkRRect spotShadowRRect;
1067 SkMatrix shadowTransform;
1068 shadowTransform.setScaleTranslate(spotScale, spotScale, spotOffset.fX, spotOffset.fY);
1069 rrect.transform(shadowTransform, &spotShadowRRect);
Mike Reed242135a2018-02-22 13:41:39 -05001070 SkScalar spotRadius = SkRRectPriv::GetSimpleRadii(spotShadowRRect).fX;
Jim Van Verth3af1af92017-05-18 15:06:54 -04001071
1072 // Compute the insetWidth
Jim Van Verth1af03d42017-07-31 09:34:58 -04001073 SkScalar blurOutset = srcSpaceSpotBlur;
Jim Van Verth3af1af92017-05-18 15:06:54 -04001074 SkScalar insetWidth = blurOutset;
1075 if (transparent) {
1076 // If transparent, just do a fill
1077 insetWidth += spotShadowRRect.width();
1078 } else {
1079 // For shadows, instead of using a stroke we specify an inset from the penumbra
1080 // border. We want to extend this inset area so that it meets up with the caster
1081 // geometry. The inset geometry will by default already be inset by the blur width.
1082 //
1083 // We compare the min and max corners inset by the radius between the original
1084 // rrect and the shadow rrect. The distance between the two plus the difference
1085 // between the scaled radius and the original radius gives the distance from the
1086 // transformed shadow shape to the original shape in that corner. The max
1087 // of these gives the maximum distance we need to cover.
1088 //
1089 // Since we are outsetting by 1/2 the blur distance, we just add the maxOffset to
1090 // that to get the full insetWidth.
1091 SkScalar maxOffset;
1092 if (rrect.isRect()) {
1093 // Manhattan distance works better for rects
1094 maxOffset = SkTMax(SkTMax(SkTAbs(spotShadowRRect.rect().fLeft -
1095 rrect.rect().fLeft),
1096 SkTAbs(spotShadowRRect.rect().fTop -
1097 rrect.rect().fTop)),
1098 SkTMax(SkTAbs(spotShadowRRect.rect().fRight -
1099 rrect.rect().fRight),
1100 SkTAbs(spotShadowRRect.rect().fBottom -
1101 rrect.rect().fBottom)));
1102 } else {
Mike Reed242135a2018-02-22 13:41:39 -05001103 SkScalar dr = spotRadius - SkRRectPriv::GetSimpleRadii(rrect).fX;
Jim Van Verth3af1af92017-05-18 15:06:54 -04001104 SkPoint upperLeftOffset = SkPoint::Make(spotShadowRRect.rect().fLeft -
1105 rrect.rect().fLeft + dr,
1106 spotShadowRRect.rect().fTop -
1107 rrect.rect().fTop + dr);
1108 SkPoint lowerRightOffset = SkPoint::Make(spotShadowRRect.rect().fRight -
1109 rrect.rect().fRight - dr,
1110 spotShadowRRect.rect().fBottom -
1111 rrect.rect().fBottom - dr);
Cary Clarkdf429f32017-11-08 11:44:31 -05001112 maxOffset = SkScalarSqrt(SkTMax(SkPointPriv::LengthSqd(upperLeftOffset),
1113 SkPointPriv::LengthSqd(lowerRightOffset))) + dr;
Jim Van Verth3af1af92017-05-18 15:06:54 -04001114 }
Jim Van Verth4c8c1e82018-04-23 17:14:48 -04001115 insetWidth += SkTMax(blurOutset, maxOffset);
Jim Van Verth3af1af92017-05-18 15:06:54 -04001116 }
1117
1118 // Outset the shadow rrect to the border of the penumbra
1119 SkRect outsetRect = spotShadowRRect.rect().makeOutset(blurOutset, blurOutset);
1120 if (spotShadowRRect.isOval()) {
1121 spotShadowRRect = SkRRect::MakeOval(outsetRect);
1122 } else {
1123 SkScalar outsetRad = spotRadius + blurOutset;
1124 spotShadowRRect = SkRRect::MakeRectXY(outsetRect, outsetRad, outsetRad);
1125 }
1126
Jim Van Verthb1b80f72018-01-18 15:19:13 -05001127 GrColor spotColor = SkColorToPremulGrColor(rec.fSpotColor);
Jim Van Verth34d6e4b2017-06-09 11:09:03 -04001128
Robert Phillips7c525e62018-06-12 10:11:12 -04001129 std::unique_ptr<GrDrawOp> op = GrShadowRRectOp::Make(fContext,
1130 spotColor,
1131 viewMatrix,
Brian Salomon05969092017-07-13 11:20:51 -04001132 spotShadowRRect,
Jim Van Verth1af03d42017-07-31 09:34:58 -04001133 2.0f * devSpaceSpotBlur,
Brian Salomon05969092017-07-13 11:20:51 -04001134 insetWidth);
1135 SkASSERT(op);
1136 this->addDrawOp(clip, std::move(op));
Jim Van Verth3af1af92017-05-18 15:06:54 -04001137 }
1138
1139 return true;
Jim Van Verthc5903412016-11-17 15:27:09 -05001140}
1141
1142///////////////////////////////////////////////////////////////////////////////
1143
Brian Osman11052242016-10-27 14:47:55 -04001144bool GrRenderTargetContext::drawFilledDRRect(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -05001145 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001146 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -04001147 const SkMatrix& viewMatrix,
1148 const SkRRect& origOuter,
1149 const SkRRect& origInner) {
robertphillips00095892016-02-29 13:50:40 -08001150 SkASSERT(!origInner.isEmpty());
1151 SkASSERT(!origOuter.isEmpty());
1152
Brian Salomon65749212017-12-01 16:01:47 -05001153 SkTCopyOnFirstWrite<SkRRect> inner(origInner), outer(origOuter);
1154
Brian Salomon45839f92017-12-04 09:02:35 -05001155 GrAAType aaType = this->chooseAAType(aa, GrAllowMixedSamples::kNo);
1156
1157 if (GrAAType::kMSAA == aaType) {
1158 return false;
1159 }
1160
Mike Reed242135a2018-02-22 13:41:39 -05001161 if (GrAAType::kCoverage == aaType && SkRRectPriv::IsCircle(*inner)
1162 && SkRRectPriv::IsCircle(*outer)) {
Brian Salomon65749212017-12-01 16:01:47 -05001163 auto outerR = outer->width() / 2.f;
1164 auto innerR = inner->width() / 2.f;
1165 auto cx = outer->getBounds().fLeft + outerR;
1166 auto cy = outer->getBounds().fTop + outerR;
1167 if (SkScalarNearlyEqual(cx, inner->getBounds().fLeft + innerR) &&
1168 SkScalarNearlyEqual(cy, inner->getBounds().fTop + innerR)) {
1169 auto avgR = (innerR + outerR) / 2.f;
1170 auto circleBounds = SkRect::MakeLTRB(cx - avgR, cy - avgR, cx + avgR, cy + avgR);
1171 SkStrokeRec stroke(SkStrokeRec::kFill_InitStyle);
1172 stroke.setStrokeStyle(outerR - innerR);
Robert Phillips7c525e62018-06-12 10:11:12 -04001173 auto op = GrOvalOpFactory::MakeOvalOp(fContext, std::move(paint), viewMatrix,
1174 circleBounds, GrStyle(stroke, nullptr),
Brian Salomon62e4f3d2018-04-20 13:54:11 -04001175 this->caps()->shaderCaps());
Brian Salomon65749212017-12-01 16:01:47 -05001176 if (op) {
1177 this->addDrawOp(clip, std::move(op));
1178 return true;
1179 }
1180 }
1181 }
1182
Ethan Nicholas0f3c7322017-11-09 14:51:17 -05001183 GrClipEdgeType innerEdgeType, outerEdgeType;
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001184 if (GrAAType::kCoverage == aaType) {
Ethan Nicholas1706f842017-11-10 11:58:19 -05001185 innerEdgeType = GrClipEdgeType::kInverseFillAA;
1186 outerEdgeType = GrClipEdgeType::kFillAA;
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001187 } else {
Ethan Nicholas1706f842017-11-10 11:58:19 -05001188 innerEdgeType = GrClipEdgeType::kInverseFillBW;
1189 outerEdgeType = GrClipEdgeType::kFillBW;
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001190 }
robertphillips00095892016-02-29 13:50:40 -08001191
robertphillips00095892016-02-29 13:50:40 -08001192 SkMatrix inverseVM;
1193 if (!viewMatrix.isIdentity()) {
1194 if (!origInner.transform(viewMatrix, inner.writable())) {
1195 return false;
1196 }
1197 if (!origOuter.transform(viewMatrix, outer.writable())) {
1198 return false;
1199 }
1200 if (!viewMatrix.invert(&inverseVM)) {
1201 return false;
1202 }
1203 } else {
1204 inverseVM.reset();
halcanary9d524f22016-03-29 09:03:52 -07001205 }
robertphillips00095892016-02-29 13:50:40 -08001206
Brian Salomon14471772017-12-05 10:35:15 -05001207 const auto& caps = *this->caps()->shaderCaps();
robertphillips00095892016-02-29 13:50:40 -08001208 // TODO these need to be a geometry processors
Brian Salomon14471772017-12-05 10:35:15 -05001209 auto innerEffect = GrRRectEffect::Make(innerEdgeType, *inner, caps);
robertphillips00095892016-02-29 13:50:40 -08001210 if (!innerEffect) {
1211 return false;
1212 }
1213
Brian Salomon14471772017-12-05 10:35:15 -05001214 auto outerEffect = GrRRectEffect::Make(outerEdgeType, *outer, caps);
robertphillips00095892016-02-29 13:50:40 -08001215 if (!outerEffect) {
1216 return false;
1217 }
1218
Brian Salomon82f44312017-01-11 13:42:54 -05001219 paint.addCoverageFragmentProcessor(std::move(innerEffect));
1220 paint.addCoverageFragmentProcessor(std::move(outerEffect));
robertphillips00095892016-02-29 13:50:40 -08001221
1222 SkRect bounds = outer->getBounds();
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001223 if (GrAAType::kCoverage == aaType) {
robertphillips00095892016-02-29 13:50:40 -08001224 bounds.outset(SK_ScalarHalf, SK_ScalarHalf);
1225 }
halcanary9d524f22016-03-29 09:03:52 -07001226
Brian Salomon82f44312017-01-11 13:42:54 -05001227 this->fillRectWithLocalMatrix(clip, std::move(paint), GrAA::kNo, SkMatrix::I(), bounds,
1228 inverseVM);
robertphillips00095892016-02-29 13:50:40 -08001229 return true;
1230}
1231
Brian Osman11052242016-10-27 14:47:55 -04001232void GrRenderTargetContext::drawDRRect(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -05001233 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001234 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -04001235 const SkMatrix& viewMatrix,
1236 const SkRRect& outer,
1237 const SkRRect& inner) {
robertphillips00095892016-02-29 13:50:40 -08001238 ASSERT_SINGLE_OWNER
1239 RETURN_IF_ABANDONED
1240 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -04001241 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawDRRect", fContext);
robertphillips00095892016-02-29 13:50:40 -08001242
1243 SkASSERT(!outer.isEmpty());
1244 SkASSERT(!inner.isEmpty());
1245
Robert Phillips72152832017-01-25 17:31:35 -05001246 AutoCheckFlush acf(this->drawingManager());
robertphillips00095892016-02-29 13:50:40 -08001247
Brian Salomon82f44312017-01-11 13:42:54 -05001248 if (this->drawFilledDRRect(clip, std::move(paint), aa, viewMatrix, outer, inner)) {
robertphillips00095892016-02-29 13:50:40 -08001249 return;
1250 }
1251
1252 SkPath path;
1253 path.setIsVolatile(true);
1254 path.addRRect(inner);
1255 path.addRRect(outer);
1256 path.setFillType(SkPath::kEvenOdd_FillType);
Brian Salomon2fad74a2017-12-20 13:28:55 -05001257 this->drawShapeUsingPathRenderer(clip, std::move(paint), aa, viewMatrix, GrShape(path));
robertphillips00095892016-02-29 13:50:40 -08001258}
1259
robertphillipsea461502015-05-26 11:38:03 -07001260///////////////////////////////////////////////////////////////////////////////
1261
Brian Osman11052242016-10-27 14:47:55 -04001262void GrRenderTargetContext::drawRegion(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -05001263 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001264 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -04001265 const SkMatrix& viewMatrix,
1266 const SkRegion& region,
Stan Iliev73d8fd92017-08-02 15:36:24 -04001267 const GrStyle& style,
1268 const GrUserStencilSettings* ss) {
msarettcc319b92016-08-25 18:07:18 -07001269 ASSERT_SINGLE_OWNER
1270 RETURN_IF_ABANDONED
1271 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -04001272 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawRegion", fContext);
msarettcc319b92016-08-25 18:07:18 -07001273
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001274 if (GrAA::kYes == aa) {
Brian Salomonfc527d22016-12-14 21:07:01 -05001275 // GrRegionOp performs no antialiasing but is much faster, so here we check the matrix
Brian Salomonc57c7c92016-12-06 14:47:34 -05001276 // to see whether aa is really required.
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001277 if (!SkToBool(viewMatrix.getType() & ~(SkMatrix::kTranslate_Mask)) &&
Brian Salomon34169692017-08-28 15:32:01 -04001278 SkScalarIsInt(viewMatrix.getTranslateX()) &&
1279 SkScalarIsInt(viewMatrix.getTranslateY())) {
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001280 aa = GrAA::kNo;
1281 }
Brian Salomonc57c7c92016-12-06 14:47:34 -05001282 }
msarettcc319b92016-08-25 18:07:18 -07001283 bool complexStyle = !style.isSimpleFill();
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001284 if (complexStyle || GrAA::kYes == aa) {
msarettcc319b92016-08-25 18:07:18 -07001285 SkPath path;
1286 region.getBoundaryPath(&path);
Brian Salomon82f44312017-01-11 13:42:54 -05001287 return this->drawPath(clip, std::move(paint), aa, viewMatrix, path, style);
msarettcc319b92016-08-25 18:07:18 -07001288 }
1289
Brian Salomonf0366322017-07-11 15:53:05 -04001290 GrAAType aaType = this->chooseAAType(GrAA::kNo, GrAllowMixedSamples::kNo);
Robert Phillips7c525e62018-06-12 10:11:12 -04001291 std::unique_ptr<GrDrawOp> op = GrRegionOp::Make(fContext, std::move(paint), viewMatrix, region,
1292 aaType, ss);
Brian Salomonf0366322017-07-11 15:53:05 -04001293 this->addDrawOp(clip, std::move(op));
msarettcc319b92016-08-25 18:07:18 -07001294}
1295
Brian Osman11052242016-10-27 14:47:55 -04001296void GrRenderTargetContext::drawOval(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -05001297 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001298 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -04001299 const SkMatrix& viewMatrix,
1300 const SkRect& oval,
1301 const GrStyle& style) {
joshualitt1de610a2016-01-06 08:26:09 -08001302 ASSERT_SINGLE_OWNER
robertphillipsea461502015-05-26 11:38:03 -07001303 RETURN_IF_ABANDONED
robertphillips2e1e51f2015-10-15 08:01:48 -07001304 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -04001305 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawOval", fContext);
robertphillips2e1e51f2015-10-15 08:01:48 -07001306
Robert Phillips7484d202018-07-03 09:09:08 -04001307 const SkStrokeRec& stroke = style.strokeRec();
1308
Brian Salomon62e4f3d2018-04-20 13:54:11 -04001309 if (oval.isEmpty() && !style.pathEffect()) {
Robert Phillips7484d202018-07-03 09:09:08 -04001310 if (stroke.getStyle() == SkStrokeRec::kFill_Style) {
1311 return;
1312 }
1313
1314 this->drawRect(clip, std::move(paint), aa, viewMatrix, oval, &style);
Brian Salomon62e4f3d2018-04-20 13:54:11 -04001315 return;
robertphillipsea461502015-05-26 11:38:03 -07001316 }
1317
Robert Phillips72152832017-01-25 17:31:35 -05001318 AutoCheckFlush acf(this->drawingManager());
csmartdaltona7f29642016-07-07 08:49:11 -07001319
Brian Salomonea26d6b2018-01-23 20:33:21 +00001320 GrAAType aaType = this->chooseAAType(aa, GrAllowMixedSamples::kNo);
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001321 if (GrAAType::kCoverage == aaType) {
Brian Salomonc7fe0f72018-05-11 10:14:21 -04001322 const GrShaderCaps* shaderCaps = this->caps()->shaderCaps();
Robert Phillips7c525e62018-06-12 10:11:12 -04001323 if (auto op = GrOvalOpFactory::MakeOvalOp(fContext, std::move(paint), viewMatrix, oval,
1324 style, shaderCaps)) {
Brian Salomon05441c42017-05-15 16:45:49 -04001325 this->addDrawOp(clip, std::move(op));
robertphillipsb56f9272016-02-25 11:03:52 -08001326 return;
1327 }
robertphillipsea461502015-05-26 11:38:03 -07001328 }
robertphillipsb56f9272016-02-25 11:03:52 -08001329
Brian Salomon5209d7f2018-04-20 16:52:42 -04001330 this->drawShapeUsingPathRenderer(
1331 clip, std::move(paint), aa, viewMatrix,
1332 GrShape(SkRRect::MakeOval(oval), SkPath::kCW_Direction, 2, false, style));
robertphillipsea461502015-05-26 11:38:03 -07001333}
1334
Brian Osman11052242016-10-27 14:47:55 -04001335void GrRenderTargetContext::drawArc(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -05001336 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001337 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -04001338 const SkMatrix& viewMatrix,
1339 const SkRect& oval,
1340 SkScalar startAngle,
1341 SkScalar sweepAngle,
1342 bool useCenter,
1343 const GrStyle& style) {
Robert Phillipsf1d0ced2017-02-10 09:31:01 -05001344 ASSERT_SINGLE_OWNER
1345 RETURN_IF_ABANDONED
1346 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -04001347 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawArc", fContext);
Robert Phillipsf1d0ced2017-02-10 09:31:01 -05001348
1349 AutoCheckFlush acf(this->drawingManager());
1350
Brian Salomonea26d6b2018-01-23 20:33:21 +00001351 GrAAType aaType = this->chooseAAType(aa, GrAllowMixedSamples::kNo);
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001352 if (GrAAType::kCoverage == aaType) {
Brian Salomonc7fe0f72018-05-11 10:14:21 -04001353 const GrShaderCaps* shaderCaps = this->caps()->shaderCaps();
Robert Phillips7c525e62018-06-12 10:11:12 -04001354 std::unique_ptr<GrDrawOp> op = GrOvalOpFactory::MakeArcOp(fContext,
1355 std::move(paint),
Brian Salomonea26d6b2018-01-23 20:33:21 +00001356 viewMatrix,
1357 oval,
1358 startAngle,
1359 sweepAngle,
1360 useCenter,
1361 style,
1362 shaderCaps);
Brian Salomon42521e82016-12-07 16:44:58 -05001363 if (op) {
Brian Salomon05441c42017-05-15 16:45:49 -04001364 this->addDrawOp(clip, std::move(op));
bsalomon4f3a0ca2016-08-22 13:14:26 -07001365 return;
1366 }
1367 }
Brian Salomone4949402018-04-26 15:22:04 -04001368 this->drawShapeUsingPathRenderer(
1369 clip, std::move(paint), aa, viewMatrix,
1370 GrShape::MakeArc(oval, startAngle, sweepAngle, useCenter, style));
bsalomon4f3a0ca2016-08-22 13:14:26 -07001371}
1372
Brian Osman11052242016-10-27 14:47:55 -04001373void GrRenderTargetContext::drawImageLattice(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -05001374 GrPaint&& paint,
Brian Osman11052242016-10-27 14:47:55 -04001375 const SkMatrix& viewMatrix,
Brian Salomon2a943df2018-05-04 13:43:19 -04001376 sk_sp<GrTextureProxy> image,
1377 sk_sp<GrColorSpaceXform> csxf,
1378 GrSamplerState::Filter filter,
Brian Osman11052242016-10-27 14:47:55 -04001379 std::unique_ptr<SkLatticeIter> iter,
1380 const SkRect& dst) {
joshualitt1de610a2016-01-06 08:26:09 -08001381 ASSERT_SINGLE_OWNER
joshualitt33a5fce2015-11-18 13:28:51 -08001382 RETURN_IF_ABANDONED
1383 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -04001384 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawImageLattice", fContext);
joshualitt33a5fce2015-11-18 13:28:51 -08001385
Robert Phillips72152832017-01-25 17:31:35 -05001386 AutoCheckFlush acf(this->drawingManager());
joshualitt33a5fce2015-11-18 13:28:51 -08001387
Brian Salomon2a943df2018-05-04 13:43:19 -04001388 std::unique_ptr<GrDrawOp> op =
Robert Phillips7c525e62018-06-12 10:11:12 -04001389 GrLatticeOp::MakeNonAA(fContext, std::move(paint), viewMatrix, std::move(image),
1390 std::move(csxf), filter, std::move(iter), dst);
Brian Salomon815486c2017-07-11 08:52:13 -04001391 this->addDrawOp(clip, std::move(op));
joshualitt33a5fce2015-11-18 13:28:51 -08001392}
1393
Greg Daniel51316782017-08-02 15:10:09 +00001394GrSemaphoresSubmitted GrRenderTargetContext::prepareForExternalIO(
1395 int numSemaphores, GrBackendSemaphore backendSemaphores[]) {
robertphillips8c523e02016-07-26 07:41:00 -07001396 ASSERT_SINGLE_OWNER
Greg Daniel51316782017-08-02 15:10:09 +00001397 if (this->drawingManager()->wasAbandoned()) { return GrSemaphoresSubmitted::kNo; }
robertphillips8c523e02016-07-26 07:41:00 -07001398 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -04001399 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "prepareForExternalIO", fContext);
robertphillips8c523e02016-07-26 07:41:00 -07001400
Greg Daniel51316782017-08-02 15:10:09 +00001401 return this->drawingManager()->prepareSurfaceForExternalIO(fRenderTargetProxy.get(),
1402 numSemaphores,
1403 backendSemaphores);
Greg Daniela5cb7812017-06-16 09:45:32 -04001404}
1405
Greg Danielc64ee462017-06-15 16:59:49 -04001406bool GrRenderTargetContext::waitOnSemaphores(int numSemaphores,
Greg Daniela5cb7812017-06-16 09:45:32 -04001407 const GrBackendSemaphore* waitSemaphores) {
1408 ASSERT_SINGLE_OWNER
Greg Danielc64ee462017-06-15 16:59:49 -04001409 RETURN_FALSE_IF_ABANDONED
Greg Daniela5cb7812017-06-16 09:45:32 -04001410 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -04001411 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "waitOnSemaphores", fContext);
Greg Daniela5cb7812017-06-16 09:45:32 -04001412
1413 AutoCheckFlush acf(this->drawingManager());
1414
Greg Danielc64ee462017-06-15 16:59:49 -04001415 if (numSemaphores && !this->caps()->fenceSyncSupport()) {
1416 return false;
1417 }
1418
Robert Phillips6be756b2018-01-16 15:07:54 -05001419 auto resourceProvider = fContext->contextPriv().resourceProvider();
1420
Greg Daniela5cb7812017-06-16 09:45:32 -04001421 SkTArray<sk_sp<GrSemaphore>> semaphores(numSemaphores);
1422 for (int i = 0; i < numSemaphores; ++i) {
Robert Phillips6be756b2018-01-16 15:07:54 -05001423 sk_sp<GrSemaphore> sema = resourceProvider->wrapBackendSemaphore(
Greg Daniel17b7c052018-01-09 13:55:33 -05001424 waitSemaphores[i], GrResourceProvider::SemaphoreWrapType::kWillWait,
1425 kAdopt_GrWrapOwnership);
Robert Phillips7c525e62018-06-12 10:11:12 -04001426 std::unique_ptr<GrOp> waitOp(GrSemaphoreOp::MakeWait(fContext, sema,
1427 fRenderTargetProxy.get()));
Robert Phillips2de8cfa2017-06-28 10:33:41 -04001428 this->getRTOpList()->addOp(std::move(waitOp), *this->caps());
Greg Daniela5cb7812017-06-16 09:45:32 -04001429 }
Greg Danielc64ee462017-06-15 16:59:49 -04001430 return true;
robertphillips8c523e02016-07-26 07:41:00 -07001431}
joshualitt33a5fce2015-11-18 13:28:51 -08001432
Robert Phillips65a88fa2017-08-08 08:36:22 -04001433void GrRenderTargetContext::insertEventMarker(const SkString& str) {
Robert Phillips88a32ef2018-06-07 11:05:56 -04001434 std::unique_ptr<GrOp> op(GrDebugMarkerOp::Make(fContext, fRenderTargetProxy.get(), str));
Robert Phillips65a88fa2017-08-08 08:36:22 -04001435 this->getRTOpList()->addOp(std::move(op), *this->caps());
1436}
1437
1438
robertphillipsea461502015-05-26 11:38:03 -07001439// Can 'path' be drawn as a pair of filled nested rectangles?
bsalomon6663acf2016-05-10 09:14:17 -07001440static bool fills_as_nested_rects(const SkMatrix& viewMatrix, const SkPath& path, SkRect rects[2]) {
robertphillipsea461502015-05-26 11:38:03 -07001441
1442 if (path.isInverseFillType()) {
1443 return false;
1444 }
1445
1446 // TODO: this restriction could be lifted if we were willing to apply
1447 // the matrix to all the points individually rather than just to the rect
robertphillips0e7029e2015-11-30 05:45:06 -08001448 if (!viewMatrix.rectStaysRect()) {
robertphillipsea461502015-05-26 11:38:03 -07001449 return false;
1450 }
1451
1452 SkPath::Direction dirs[2];
1453 if (!path.isNestedFillRects(rects, dirs)) {
1454 return false;
1455 }
1456
1457 if (SkPath::kWinding_FillType == path.getFillType() && dirs[0] == dirs[1]) {
1458 // The two rects need to be wound opposite to each other
1459 return false;
1460 }
1461
1462 // Right now, nested rects where the margin is not the same width
1463 // all around do not render correctly
1464 const SkScalar* outer = rects[0].asScalars();
1465 const SkScalar* inner = rects[1].asScalars();
1466
1467 bool allEq = true;
1468
1469 SkScalar margin = SkScalarAbs(outer[0] - inner[0]);
1470 bool allGoE1 = margin >= SK_Scalar1;
1471
1472 for (int i = 1; i < 4; ++i) {
1473 SkScalar temp = SkScalarAbs(outer[i] - inner[i]);
1474 if (temp < SK_Scalar1) {
1475 allGoE1 = false;
1476 }
1477 if (!SkScalarNearlyEqual(margin, temp)) {
1478 allEq = false;
1479 }
1480 }
1481
1482 return allEq || allGoE1;
1483}
1484
Brian Osman11052242016-10-27 14:47:55 -04001485void GrRenderTargetContext::drawPath(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -05001486 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001487 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -04001488 const SkMatrix& viewMatrix,
Brian Salomon40b77a62017-12-22 11:25:52 -05001489 const SkPath& path,
Brian Osman11052242016-10-27 14:47:55 -04001490 const GrStyle& style) {
joshualitt1de610a2016-01-06 08:26:09 -08001491 ASSERT_SINGLE_OWNER
robertphillipsea461502015-05-26 11:38:03 -07001492 RETURN_IF_ABANDONED
robertphillips2e1e51f2015-10-15 08:01:48 -07001493 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -04001494 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContextPriv", "drawPath", fContext);
Brian Salomon40b77a62017-12-22 11:25:52 -05001495
1496 GrShape shape(path, style);
Brian Salomon2fad74a2017-12-20 13:28:55 -05001497 if (shape.isEmpty()) {
1498 if (shape.inverseFilled()) {
1499 this->drawPaint(clip, std::move(paint), viewMatrix);
1500 }
1501 return;
robertphillipsea461502015-05-26 11:38:03 -07001502 }
1503
Robert Phillips72152832017-01-25 17:31:35 -05001504 AutoCheckFlush acf(this->drawingManager());
robertphillipsea461502015-05-26 11:38:03 -07001505
Brian Salomon2fad74a2017-12-20 13:28:55 -05001506 if (!shape.style().hasPathEffect()) {
1507 SkRRect rrect;
1508 // We can ignore the starting point and direction since there is no path effect.
1509 bool inverted;
1510 if (shape.asRRect(&rrect, nullptr, nullptr, &inverted) && !inverted) {
1511 if (rrect.isRect()) {
1512 this->drawRect(clip, std::move(paint), aa, viewMatrix, rrect.rect(),
1513 &shape.style());
1514 return;
1515 } else if (rrect.isOval()) {
1516 this->drawOval(clip, std::move(paint), aa, viewMatrix, rrect.rect(), shape.style());
robertphillipsea461502015-05-26 11:38:03 -07001517 return;
1518 }
Brian Salomon2fad74a2017-12-20 13:28:55 -05001519 this->drawRRect(clip, std::move(paint), aa, viewMatrix, rrect, shape.style());
1520 return;
robertphillipsea461502015-05-26 11:38:03 -07001521 }
1522 }
robertphillips4bc31812016-03-01 12:22:49 -08001523
Brian Salomon40b77a62017-12-22 11:25:52 -05001524 GrAAType aaType = this->chooseAAType(aa, GrAllowMixedSamples::kNo);
1525 if (GrAAType::kCoverage == aaType) {
1526 // TODO: Make GrShape check for nested rects.
1527 SkRect rects[2];
1528 if (shape.style().isSimpleFill() && fills_as_nested_rects(viewMatrix, path, rects)) {
1529 // Concave AA paths are expensive - try to avoid them for special cases
1530 SkRect rects[2];
1531
1532 if (fills_as_nested_rects(viewMatrix, path, rects)) {
Robert Phillips7c525e62018-06-12 10:11:12 -04001533 std::unique_ptr<GrDrawOp> op = GrRectOpFactory::MakeAAFillNestedRects(
1534 fContext, std::move(paint), viewMatrix, rects);
Brian Salomon40b77a62017-12-22 11:25:52 -05001535 if (op) {
1536 this->addDrawOp(clip, std::move(op));
1537 }
1538 // A null return indicates that there is nothing to draw in this case.
1539 return;
1540 }
1541 }
1542 }
Brian Salomon2fad74a2017-12-20 13:28:55 -05001543 this->drawShapeUsingPathRenderer(clip, std::move(paint), aa, viewMatrix, shape);
robertphillipsea461502015-05-26 11:38:03 -07001544}
1545
Chris Daltonbbfd5162017-11-07 13:35:22 -07001546bool GrRenderTargetContextPriv::drawAndStencilPath(const GrHardClip& clip,
Brian Osman11052242016-10-27 14:47:55 -04001547 const GrUserStencilSettings* ss,
1548 SkRegion::Op op,
1549 bool invert,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001550 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -04001551 const SkMatrix& viewMatrix,
1552 const SkPath& path) {
robertphillips391395d2016-03-02 09:26:36 -08001553 ASSERT_SINGLE_OWNER_PRIV
1554 RETURN_FALSE_IF_ABANDONED_PRIV
Brian Osman11052242016-10-27 14:47:55 -04001555 SkDEBUGCODE(fRenderTargetContext->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -04001556 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContextPriv", "drawAndStencilPath",
1557 fRenderTargetContext->fContext);
robertphillips391395d2016-03-02 09:26:36 -08001558
1559 if (path.isEmpty() && path.isInverseFillType()) {
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001560 this->drawAndStencilRect(clip, ss, op, invert, GrAA::kNo, SkMatrix::I(),
Brian Osman11052242016-10-27 14:47:55 -04001561 SkRect::MakeIWH(fRenderTargetContext->width(),
1562 fRenderTargetContext->height()));
robertphillips391395d2016-03-02 09:26:36 -08001563 return true;
1564 }
1565
Robert Phillips72152832017-01-25 17:31:35 -05001566 AutoCheckFlush acf(fRenderTargetContext->drawingManager());
robertphillips391395d2016-03-02 09:26:36 -08001567
1568 // An Assumption here is that path renderer would use some form of tweaking
1569 // the src color (either the input alpha or in the frag shader) to implement
1570 // aa. If we have some future driver-mojo path AA that can do the right
1571 // thing WRT to the blend then we'll need some query on the PR.
Brian Salomon7c8460e2017-05-12 11:36:10 -04001572 GrAAType aaType = fRenderTargetContext->chooseAAType(aa, GrAllowMixedSamples::kNo);
robertphillips976f5f02016-06-03 10:59:20 -07001573 bool hasUserStencilSettings = !ss->isUnused();
robertphillips391395d2016-03-02 09:26:36 -08001574
Chris Daltondb91c6e2017-09-08 16:25:08 -06001575 SkIRect clipConservativeBounds;
1576 clip.getConservativeBounds(fRenderTargetContext->width(), fRenderTargetContext->height(),
1577 &clipConservativeBounds, nullptr);
1578
bsalomon8acedde2016-06-24 10:42:16 -07001579 GrShape shape(path, GrStyle::SimpleFill());
robertphillips391395d2016-03-02 09:26:36 -08001580 GrPathRenderer::CanDrawPathArgs canDrawArgs;
Brian Salomonc7fe0f72018-05-11 10:14:21 -04001581 canDrawArgs.fCaps = fRenderTargetContext->caps();
robertphillips391395d2016-03-02 09:26:36 -08001582 canDrawArgs.fViewMatrix = &viewMatrix;
bsalomon8acedde2016-06-24 10:42:16 -07001583 canDrawArgs.fShape = &shape;
Chris Daltondb91c6e2017-09-08 16:25:08 -06001584 canDrawArgs.fClipConservativeBounds = &clipConservativeBounds;
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001585 canDrawArgs.fAAType = aaType;
cdalton93a379b2016-05-11 13:58:08 -07001586 canDrawArgs.fHasUserStencilSettings = hasUserStencilSettings;
robertphillips391395d2016-03-02 09:26:36 -08001587
1588 // Don't allow the SW renderer
Robert Phillips72152832017-01-25 17:31:35 -05001589 GrPathRenderer* pr = fRenderTargetContext->drawingManager()->getPathRenderer(
Brian Salomon36aa1762016-12-10 13:24:02 -05001590 canDrawArgs, false, GrPathRendererChain::DrawType::kStencilAndColor);
robertphillips391395d2016-03-02 09:26:36 -08001591 if (!pr) {
1592 return false;
1593 }
1594
1595 GrPaint paint;
1596 paint.setCoverageSetOpXPFactory(op, invert);
1597
Brian Salomonf3569f02017-10-24 12:52:33 -04001598 GrPathRenderer::DrawPathArgs args{fRenderTargetContext->drawingManager()->getContext(),
1599 std::move(paint),
1600 ss,
1601 fRenderTargetContext,
1602 &clip,
1603 &clipConservativeBounds,
1604 &viewMatrix,
1605 &shape,
1606 aaType,
Brian Osman34ec3742018-07-03 10:40:57 -04001607 fRenderTargetContext->colorSpaceInfo().isLinearlyBlended()};
robertphillips391395d2016-03-02 09:26:36 -08001608 pr->drawPath(args);
1609 return true;
1610}
1611
Brian Osman11052242016-10-27 14:47:55 -04001612SkBudgeted GrRenderTargetContextPriv::isBudgeted() const {
robertphillips714712b2016-08-04 06:20:45 -07001613 ASSERT_SINGLE_OWNER_PRIV
1614
Brian Osman11052242016-10-27 14:47:55 -04001615 if (fRenderTargetContext->wasAbandoned()) {
robertphillips714712b2016-08-04 06:20:45 -07001616 return SkBudgeted::kNo;
1617 }
1618
Brian Osman11052242016-10-27 14:47:55 -04001619 SkDEBUGCODE(fRenderTargetContext->validate();)
robertphillips714712b2016-08-04 06:20:45 -07001620
Robert Phillipsc7635fa2016-10-28 13:25:24 -04001621 return fRenderTargetContext->fRenderTargetProxy->isBudgeted();
robertphillips714712b2016-08-04 06:20:45 -07001622}
1623
Brian Salomon2fad74a2017-12-20 13:28:55 -05001624void GrRenderTargetContext::drawShapeUsingPathRenderer(const GrClip& clip,
1625 GrPaint&& paint,
1626 GrAA aa,
1627 const SkMatrix& viewMatrix,
1628 const GrShape& originalShape) {
joshualitt1de610a2016-01-06 08:26:09 -08001629 ASSERT_SINGLE_OWNER
robertphillipsea461502015-05-26 11:38:03 -07001630 RETURN_IF_ABANDONED
Brian Salomondcbb9d92017-07-19 10:53:20 -04001631 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "internalDrawPath", fContext);
1632
Chris Daltondb91c6e2017-09-08 16:25:08 -06001633 SkIRect clipConservativeBounds;
1634 clip.getConservativeBounds(this->width(), this->height(), &clipConservativeBounds, nullptr);
1635
Brian Salomon2fad74a2017-12-20 13:28:55 -05001636 GrShape tempShape;
Brian Salomon7c8460e2017-05-12 11:36:10 -04001637 // NVPR cannot handle hairlines, so this would get picked up by a different stencil and
1638 // cover path renderer (i.e. default path renderer). The hairline renderer produces much
1639 // smoother hairlines than MSAA.
Brian Salomon2fad74a2017-12-20 13:28:55 -05001640 GrAllowMixedSamples allowMixedSamples = originalShape.style().isSimpleHairline()
1641 ? GrAllowMixedSamples::kNo
1642 : GrAllowMixedSamples::kYes;
Brian Salomon7c8460e2017-05-12 11:36:10 -04001643 GrAAType aaType = this->chooseAAType(aa, allowMixedSamples);
robertphillips68737822015-10-29 12:12:21 -07001644 GrPathRenderer::CanDrawPathArgs canDrawArgs;
Brian Salomonc7fe0f72018-05-11 10:14:21 -04001645 canDrawArgs.fCaps = this->caps();
robertphillips68737822015-10-29 12:12:21 -07001646 canDrawArgs.fViewMatrix = &viewMatrix;
Brian Salomon2fad74a2017-12-20 13:28:55 -05001647 canDrawArgs.fShape = &originalShape;
Chris Daltondb91c6e2017-09-08 16:25:08 -06001648 canDrawArgs.fClipConservativeBounds = &clipConservativeBounds;
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001649 canDrawArgs.fHasUserStencilSettings = false;
robertphillips68737822015-10-29 12:12:21 -07001650
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001651 GrPathRenderer* pr;
Brian Salomon82125e92016-12-10 09:35:48 -05001652 static constexpr GrPathRendererChain::DrawType kType = GrPathRendererChain::DrawType::kColor;
Brian Salomon2fad74a2017-12-20 13:28:55 -05001653 if (originalShape.isEmpty() && !originalShape.inverseFilled()) {
Brian Salomon1e5d0ca2017-12-14 10:50:19 -05001654 return;
1655 }
1656
1657 canDrawArgs.fAAType = aaType;
1658
1659 // Try a 1st time without applying any of the style to the geometry (and barring sw)
1660 pr = this->drawingManager()->getPathRenderer(canDrawArgs, false, kType);
1661 SkScalar styleScale = GrStyle::MatrixToScaleFactor(viewMatrix);
1662
Brian Salomon2fad74a2017-12-20 13:28:55 -05001663 if (!pr && originalShape.style().pathEffect()) {
Brian Salomon1e5d0ca2017-12-14 10:50:19 -05001664 // It didn't work above, so try again with the path effect applied.
Brian Salomon2fad74a2017-12-20 13:28:55 -05001665 tempShape = originalShape.applyStyle(GrStyle::Apply::kPathEffectOnly, styleScale);
1666 if (tempShape.isEmpty()) {
robertphillipsea461502015-05-26 11:38:03 -07001667 return;
1668 }
Brian Salomon2fad74a2017-12-20 13:28:55 -05001669 canDrawArgs.fShape = &tempShape;
Robert Phillips72152832017-01-25 17:31:35 -05001670 pr = this->drawingManager()->getPathRenderer(canDrawArgs, false, kType);
Brian Salomon1e5d0ca2017-12-14 10:50:19 -05001671 }
1672 if (!pr) {
Brian Salomon2fad74a2017-12-20 13:28:55 -05001673 if (canDrawArgs.fShape->style().applies()) {
1674 tempShape = canDrawArgs.fShape->applyStyle(GrStyle::Apply::kPathEffectAndStrokeRec,
1675 styleScale);
1676 if (tempShape.isEmpty()) {
robertphillipsea461502015-05-26 11:38:03 -07001677 return;
1678 }
Brian Salomon2fad74a2017-12-20 13:28:55 -05001679 canDrawArgs.fShape = &tempShape;
Brian Salomone7df0bb2018-05-07 14:44:57 -04001680 // This time, allow SW renderer
1681 pr = this->drawingManager()->getPathRenderer(canDrawArgs, true, kType);
1682 } else {
1683 pr = this->drawingManager()->getSoftwarePathRenderer();
bsalomon6663acf2016-05-10 09:14:17 -07001684 }
Brian Salomon1e5d0ca2017-12-14 10:50:19 -05001685 }
robertphillipsea461502015-05-26 11:38:03 -07001686
bsalomon8acedde2016-06-24 10:42:16 -07001687 if (!pr) {
robertphillipsea461502015-05-26 11:38:03 -07001688#ifdef SK_DEBUG
1689 SkDebugf("Unable to find path renderer compatible with path.\n");
1690#endif
1691 return;
1692 }
1693
Robert Phillips256c37b2017-03-01 14:32:46 -05001694 GrPathRenderer::DrawPathArgs args{this->drawingManager()->getContext(),
Brian Salomon82f44312017-01-11 13:42:54 -05001695 std::move(paint),
1696 &GrUserStencilSettings::kUnused,
1697 this,
1698 &clip,
Chris Daltondb91c6e2017-09-08 16:25:08 -06001699 &clipConservativeBounds,
Brian Salomon82f44312017-01-11 13:42:54 -05001700 &viewMatrix,
Brian Salomon2fad74a2017-12-20 13:28:55 -05001701 canDrawArgs.fShape,
Brian Salomon82f44312017-01-11 13:42:54 -05001702 aaType,
Brian Osman34ec3742018-07-03 10:40:57 -04001703 this->colorSpaceInfo().isLinearlyBlended()};
bsalomon0aff2fa2015-07-31 06:48:27 -07001704 pr->drawPath(args);
robertphillipsea461502015-05-26 11:38:03 -07001705}
1706
Brian Salomon467921e2017-03-06 16:17:12 -05001707static void op_bounds(SkRect* bounds, const GrOp* op) {
1708 *bounds = op->bounds();
1709 if (op->hasZeroArea()) {
1710 if (op->hasAABloat()) {
1711 bounds->outset(0.5f, 0.5f);
1712 } else {
1713 // We don't know which way the particular GPU will snap lines or points at integer
1714 // coords. So we ensure that the bounds is large enough for either snap.
1715 SkRect before = *bounds;
1716 bounds->roundOut(bounds);
1717 if (bounds->fLeft == before.fLeft) {
1718 bounds->fLeft -= 1;
1719 }
1720 if (bounds->fTop == before.fTop) {
1721 bounds->fTop -= 1;
1722 }
1723 if (bounds->fRight == before.fRight) {
1724 bounds->fRight += 1;
1725 }
1726 if (bounds->fBottom == before.fBottom) {
1727 bounds->fBottom += 1;
1728 }
1729 }
1730 }
1731}
1732
Brian Salomon54d212e2017-03-21 14:22:38 -04001733uint32_t GrRenderTargetContext::addDrawOp(const GrClip& clip, std::unique_ptr<GrDrawOp> op) {
joshualitt1de610a2016-01-06 08:26:09 -08001734 ASSERT_SINGLE_OWNER
Robert Phillipsc0138922017-03-08 11:50:55 -05001735 if (this->drawingManager()->wasAbandoned()) {
Robert Phillipsc994a932018-06-19 13:09:54 -04001736 fContext->contextPriv().opMemoryPool()->release(std::move(op));
Robert Phillipsc0138922017-03-08 11:50:55 -05001737 return SK_InvalidUniqueID;
1738 }
robertphillips2e1e51f2015-10-15 08:01:48 -07001739 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -04001740 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "addDrawOp", fContext);
robertphillips2d70dcb2015-10-06 07:38:23 -07001741
Brian Salomon467921e2017-03-06 16:17:12 -05001742 // Setup clip
1743 SkRect bounds;
1744 op_bounds(&bounds, op.get());
Brian Salomon97180af2017-03-14 13:42:58 -04001745 GrAppliedClip appliedClip;
Brian Salomon54d212e2017-03-21 14:22:38 -04001746 GrDrawOp::FixedFunctionFlags fixedFunctionFlags = op->fixedFunctionFlags();
1747 if (!clip.apply(fContext, this, fixedFunctionFlags & GrDrawOp::FixedFunctionFlags::kUsesHWAA,
1748 fixedFunctionFlags & GrDrawOp::FixedFunctionFlags::kUsesStencil, &appliedClip,
1749 &bounds)) {
Robert Phillipsc994a932018-06-19 13:09:54 -04001750 fContext->contextPriv().opMemoryPool()->release(std::move(op));
Brian Salomon54d212e2017-03-21 14:22:38 -04001751 return SK_InvalidUniqueID;
1752 }
1753
Brian Salomon54d212e2017-03-21 14:22:38 -04001754 if (fixedFunctionFlags & GrDrawOp::FixedFunctionFlags::kUsesStencil ||
1755 appliedClip.hasStencilClip()) {
Robert Phillips6b47c7d2017-08-29 07:24:09 -04001756 this->getOpList()->setStencilLoadOp(GrLoadOp::kClear);
Robert Phillips95214472017-08-08 18:00:03 -04001757
Robert Phillips65048132017-08-10 08:44:49 -04001758 this->setNeedsStencil();
Brian Salomon54d212e2017-03-21 14:22:38 -04001759 }
1760
Robert Phillipsbb581ce2017-05-29 15:05:15 -04001761 GrXferProcessor::DstProxy dstProxy;
Brian Osman532b3f92018-07-11 10:02:07 -04001762 if (GrDrawOp::RequiresDstTexture::kYes == op->finalize(*this->caps(), &appliedClip)) {
Robert Phillipsbb581ce2017-05-29 15:05:15 -04001763 if (!this->setupDstProxy(this->asRenderTargetProxy(), clip, op->bounds(), &dstProxy)) {
Robert Phillipsc994a932018-06-19 13:09:54 -04001764 fContext->contextPriv().opMemoryPool()->release(std::move(op));
Brian Salomon54d212e2017-03-21 14:22:38 -04001765 return SK_InvalidUniqueID;
1766 }
1767 }
1768
1769 op->setClippedBounds(bounds);
Robert Phillips2de8cfa2017-06-28 10:33:41 -04001770 return this->getRTOpList()->addOp(std::move(op), *this->caps(),
1771 std::move(appliedClip), dstProxy);
Brian Salomon54d212e2017-03-21 14:22:38 -04001772}
1773
Robert Phillipsbb581ce2017-05-29 15:05:15 -04001774bool GrRenderTargetContext::setupDstProxy(GrRenderTargetProxy* rtProxy, const GrClip& clip,
Robert Phillips16d8ec62017-07-27 16:16:25 -04001775 const SkRect& opBounds,
1776 GrXferProcessor::DstProxy* dstProxy) {
Brian Salomon467921e2017-03-06 16:17:12 -05001777 if (this->caps()->textureBarrierSupport()) {
Robert Phillipsbf25d432017-04-07 10:08:53 -04001778 if (GrTextureProxy* texProxy = rtProxy->asTextureProxy()) {
Brian Salomon467921e2017-03-06 16:17:12 -05001779 // The render target is a texture, so we can read from it directly in the shader. The XP
1780 // will be responsible to detect this situation and request a texture barrier.
Robert Phillipsbb581ce2017-05-29 15:05:15 -04001781 dstProxy->setProxy(sk_ref_sp(texProxy));
1782 dstProxy->setOffset(0, 0);
Robert Phillipsbf25d432017-04-07 10:08:53 -04001783 return true;
Brian Salomon467921e2017-03-06 16:17:12 -05001784 }
1785 }
1786
Robert Phillipsbf25d432017-04-07 10:08:53 -04001787 SkIRect copyRect = SkIRect::MakeWH(rtProxy->width(), rtProxy->height());
Brian Salomon467921e2017-03-06 16:17:12 -05001788
Eric Karl74480882017-04-03 14:49:05 -07001789 SkIRect clippedRect;
Robert Phillipsbf25d432017-04-07 10:08:53 -04001790 clip.getConservativeBounds(rtProxy->width(), rtProxy->height(), &clippedRect);
Eric Karl72e551e2017-04-04 13:42:10 -07001791 SkIRect drawIBounds;
Brian Salomon467921e2017-03-06 16:17:12 -05001792 opBounds.roundOut(&drawIBounds);
Brian Salomon859621f2017-03-16 09:21:54 -04001793 // Cover up for any precision issues by outsetting the op bounds a pixel in each direction.
1794 drawIBounds.outset(1, 1);
Eric Karl72e551e2017-04-04 13:42:10 -07001795 if (!clippedRect.intersect(drawIBounds)) {
Brian Salomon467921e2017-03-06 16:17:12 -05001796#ifdef SK_DEBUG
Robert Phillipsbf25d432017-04-07 10:08:53 -04001797 GrCapsDebugf(this->caps(), "setupDstTexture: Missed an early reject bailing on draw.");
Brian Salomon467921e2017-03-06 16:17:12 -05001798#endif
Robert Phillipsbf25d432017-04-07 10:08:53 -04001799 return false;
Brian Salomon467921e2017-03-06 16:17:12 -05001800 }
1801
1802 // MSAA consideration: When there is support for reading MSAA samples in the shader we could
1803 // have per-sample dst values by making the copy multisampled.
1804 GrSurfaceDesc desc;
Eric Karl74480882017-04-03 14:49:05 -07001805 bool rectsMustMatch = false;
1806 bool disallowSubrect = false;
Brian Salomon2a4f9832018-03-03 22:43:43 -05001807 GrSurfaceOrigin origin;
1808 if (!this->caps()->initDescForDstCopy(rtProxy, &desc, &origin, &rectsMustMatch,
1809 &disallowSubrect)) {
Brian Salomon467921e2017-03-06 16:17:12 -05001810 desc.fFlags = kRenderTarget_GrSurfaceFlag;
Robert Phillipsbf25d432017-04-07 10:08:53 -04001811 desc.fConfig = rtProxy->config();
Greg Daniel1efe3222018-04-04 14:02:51 -04001812 origin = rtProxy->origin();
Brian Salomon467921e2017-03-06 16:17:12 -05001813 }
1814
Eric Karl74480882017-04-03 14:49:05 -07001815 if (!disallowSubrect) {
1816 copyRect = clippedRect;
1817 }
Brian Salomon467921e2017-03-06 16:17:12 -05001818
Robert Phillipsbf25d432017-04-07 10:08:53 -04001819 SkIPoint dstPoint, dstOffset;
1820 SkBackingFit fit;
Eric Karl74480882017-04-03 14:49:05 -07001821 if (rectsMustMatch) {
Robert Phillipsbf25d432017-04-07 10:08:53 -04001822 desc.fWidth = rtProxy->width();
1823 desc.fHeight = rtProxy->height();
Eric Karl74480882017-04-03 14:49:05 -07001824 dstPoint = {copyRect.fLeft, copyRect.fTop};
1825 dstOffset = {0, 0};
Robert Phillipsbf25d432017-04-07 10:08:53 -04001826 fit = SkBackingFit::kExact;
Eric Karl74480882017-04-03 14:49:05 -07001827 } else {
1828 desc.fWidth = copyRect.width();
1829 desc.fHeight = copyRect.height();
1830 dstPoint = {0, 0};
1831 dstOffset = {copyRect.fLeft, copyRect.fTop};
Robert Phillipsbf25d432017-04-07 10:08:53 -04001832 fit = SkBackingFit::kApprox;
Eric Karl74480882017-04-03 14:49:05 -07001833 }
Brian Salomon467921e2017-03-06 16:17:12 -05001834
Robert Phillipsbf25d432017-04-07 10:08:53 -04001835 sk_sp<GrSurfaceContext> sContext = fContext->contextPriv().makeDeferredSurfaceContext(
Brian Salomon2a4f9832018-03-03 22:43:43 -05001836 desc, origin, GrMipMapped::kNo, fit, SkBudgeted::kYes,
Brian Salomonf802e752018-02-13 17:13:31 -05001837 sk_ref_sp(this->colorSpaceInfo().colorSpace()));
Robert Phillipsbf25d432017-04-07 10:08:53 -04001838 if (!sContext) {
1839 SkDebugf("setupDstTexture: surfaceContext creation failed.\n");
1840 return false;
1841 }
1842
1843 if (!sContext->copy(rtProxy, copyRect, dstPoint)) {
1844 SkDebugf("setupDstTexture: copy failed.\n");
1845 return false;
1846 }
1847
Robert Phillipsbb581ce2017-05-29 15:05:15 -04001848 dstProxy->setProxy(sContext->asTextureProxyRef());
1849 dstProxy->setOffset(dstOffset);
Robert Phillipsbf25d432017-04-07 10:08:53 -04001850 return true;
robertphillips2334fb62015-06-17 05:43:33 -07001851}