blob: de721210c1f03e3cdf47b4e7022d038210a42950 [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)
Herb Derby65956872018-08-21 16:55:04 -040065 , fGlyphPainter{*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,
Robert Phillips137ca522018-08-15 10:14:33 -040072 const SkMatrix& viewMatrix, bool pathIsMutable) override {
Robert Phillips27927a52018-08-20 13:18:12 -040073 // TODO: we are losing the mutability of the path here
74 GrShape shape(path, paint);
75
76 GrBlurUtils::drawShapeWithMaskFilter(fRenderTargetContext->fContext, fRenderTargetContext,
77 clip, paint, viewMatrix, shape);
Brian Salomonf18b1d82017-10-27 11:30:49 -040078 }
79
80 void makeGrPaint(GrMaskFormat maskFormat, const SkPaint& skPaint, const SkMatrix& viewMatrix,
Robert Phillips7c525e62018-06-12 10:11:12 -040081 GrPaint* grPaint) override {
Brian Salomonf18b1d82017-10-27 11:30:49 -040082 GrContext* context = fRenderTargetContext->fContext;
83 const GrColorSpaceInfo& colorSpaceInfo = fRenderTargetContext->colorSpaceInfo();
84 if (kARGB_GrMaskFormat == maskFormat) {
85 SkPaintToGrPaintWithPrimitiveColor(context, colorSpaceInfo, skPaint, grPaint);
86 } else {
87 SkPaintToGrPaint(context, colorSpaceInfo, skPaint, viewMatrix, grPaint);
88 }
89 }
90
Robert Phillips7c525e62018-06-12 10:11:12 -040091 GrContext* getContext() override {
92 return fRenderTargetContext->fContext;
93 }
94
Herb Derby65956872018-08-21 16:55:04 -040095 SkGlyphRunListPainter* glyphPainter() override {
96 return &fGlyphPainter;
Herb Derby74c6ed32018-07-28 18:07:54 -040097 }
98
Brian Salomonf18b1d82017-10-27 11:30:49 -040099private:
100 GrRenderTargetContext* fRenderTargetContext;
Herb Derby65956872018-08-21 16:55:04 -0400101 SkGlyphRunListPainter fGlyphPainter;
Herb Derby74c6ed32018-07-28 18:07:54 -0400102
Brian Salomonf18b1d82017-10-27 11:30:49 -0400103};
joshualittbc907352016-01-13 06:45:40 -0800104
Robert Phillips72152832017-01-25 17:31:35 -0500105#define ASSERT_OWNED_RESOURCE(R) SkASSERT(!(R) || (R)->getContext() == this->drawingManager()->getContext())
joshualitt1de610a2016-01-06 08:26:09 -0800106#define ASSERT_SINGLE_OWNER \
Robert Phillipsa90aa2b2017-04-10 08:19:26 -0400107 SkDEBUGCODE(GrSingleOwner::AutoEnforce debug_SingleOwner(this->singleOwner());)
robertphillips391395d2016-03-02 09:26:36 -0800108#define ASSERT_SINGLE_OWNER_PRIV \
Robert Phillipsa90aa2b2017-04-10 08:19:26 -0400109 SkDEBUGCODE(GrSingleOwner::AutoEnforce debug_SingleOwner(fRenderTargetContext->singleOwner());)
Robert Phillips72152832017-01-25 17:31:35 -0500110#define RETURN_IF_ABANDONED if (this->drawingManager()->wasAbandoned()) { return; }
111#define RETURN_IF_ABANDONED_PRIV if (fRenderTargetContext->drawingManager()->wasAbandoned()) { return; }
112#define RETURN_FALSE_IF_ABANDONED if (this->drawingManager()->wasAbandoned()) { return false; }
113#define RETURN_FALSE_IF_ABANDONED_PRIV if (fRenderTargetContext->drawingManager()->wasAbandoned()) { return false; }
114#define RETURN_NULL_IF_ABANDONED if (this->drawingManager()->wasAbandoned()) { return nullptr; }
robertphillipsea461502015-05-26 11:38:03 -0700115
Brian Salomone225b562017-06-14 13:00:03 -0400116//////////////////////////////////////////////////////////////////////////////
117
118GrAAType GrChooseAAType(GrAA aa, GrFSAAType fsaaType, GrAllowMixedSamples allowMixedSamples,
119 const GrCaps& caps) {
120 if (GrAA::kNo == aa) {
121 // On some devices we cannot disable MSAA if it is enabled so we make the AA type reflect
122 // that.
123 if (fsaaType == GrFSAAType::kUnifiedMSAA && !caps.multisampleDisableSupport()) {
124 return GrAAType::kMSAA;
125 }
126 return GrAAType::kNone;
127 }
128 switch (fsaaType) {
129 case GrFSAAType::kNone:
130 return GrAAType::kCoverage;
131 case GrFSAAType::kUnifiedMSAA:
132 return GrAAType::kMSAA;
133 case GrFSAAType::kMixedSamples:
134 return GrAllowMixedSamples::kYes == allowMixedSamples ? GrAAType::kMixedSamples
135 : GrAAType::kCoverage;
136 }
Ben Wagnerb4aab9a2017-08-16 10:53:04 -0400137 SK_ABORT("Unexpected fsaa type");
Brian Salomone225b562017-06-14 13:00:03 -0400138 return GrAAType::kNone;
139}
140
141//////////////////////////////////////////////////////////////////////////////
142
robertphillipsea461502015-05-26 11:38:03 -0700143class AutoCheckFlush {
144public:
halcanary9d524f22016-03-29 09:03:52 -0700145 AutoCheckFlush(GrDrawingManager* drawingManager) : fDrawingManager(drawingManager) {
robertphillips77a2e522015-10-17 07:43:27 -0700146 SkASSERT(fDrawingManager);
147 }
bsalomonb77a9072016-09-07 10:02:04 -0700148 ~AutoCheckFlush() { fDrawingManager->flushIfNecessary(); }
robertphillipsea461502015-05-26 11:38:03 -0700149
150private:
robertphillips77a2e522015-10-17 07:43:27 -0700151 GrDrawingManager* fDrawingManager;
robertphillipsea461502015-05-26 11:38:03 -0700152};
153
Brian Osman11052242016-10-27 14:47:55 -0400154bool GrRenderTargetContext::wasAbandoned() const {
Robert Phillips72152832017-01-25 17:31:35 -0500155 return this->drawingManager()->wasAbandoned();
robertphillips7761d612016-05-16 09:14:53 -0700156}
157
Robert Phillipsf2361d22016-10-25 14:20:06 -0400158// In MDB mode the reffing of the 'getLastOpList' call's result allows in-progress
Brian Osman11052242016-10-27 14:47:55 -0400159// GrOpLists to be picked up and added to by renderTargetContexts lower in the call
Robert Phillipsf2361d22016-10-25 14:20:06 -0400160// stack. When this occurs with a closed GrOpList, a new one will be allocated
Brian Osman11052242016-10-27 14:47:55 -0400161// when the renderTargetContext attempts to use it (via getOpList).
162GrRenderTargetContext::GrRenderTargetContext(GrContext* context,
163 GrDrawingManager* drawingMgr,
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400164 sk_sp<GrRenderTargetProxy> rtp,
Brian Osman11052242016-10-27 14:47:55 -0400165 sk_sp<SkColorSpace> colorSpace,
166 const SkSurfaceProps* surfaceProps,
167 GrAuditTrail* auditTrail,
Robert Phillips941d1442017-06-14 16:37:02 -0400168 GrSingleOwner* singleOwner,
169 bool managedOpList)
Brian Salomonf3569f02017-10-24 12:52:33 -0400170 : GrSurfaceContext(context, drawingMgr, rtp->config(), std::move(colorSpace), auditTrail,
171 singleOwner)
172 , fRenderTargetProxy(std::move(rtp))
173 , fOpList(sk_ref_sp(fRenderTargetProxy->getLastRenderTargetOpList()))
Brian Salomonf3569f02017-10-24 12:52:33 -0400174 , fSurfaceProps(SkSurfacePropsCopyOrDefault(surfaceProps))
175 , fManagedOpList(managedOpList) {
Robert Phillips4150eea2018-02-07 17:08:21 -0500176 GrResourceProvider* resourceProvider = context->contextPriv().resourceProvider();
177 if (resourceProvider && !resourceProvider->explicitlyAllocateGPUResources()) {
178 // MDB TODO: to ensure all resources still get allocated in the correct order in the hybrid
179 // world we need to get the correct opList here so that it, in turn, can grab and hold
180 // its rendertarget.
181 this->getRTOpList();
182 }
183
Brian Salomonf18b1d82017-10-27 11:30:49 -0400184 fTextTarget.reset(new TextTarget(this));
robertphillips2e1e51f2015-10-15 08:01:48 -0700185 SkDEBUGCODE(this->validate();)
robertphillipsea461502015-05-26 11:38:03 -0700186}
187
robertphillips2e1e51f2015-10-15 08:01:48 -0700188#ifdef SK_DEBUG
Brian Osman11052242016-10-27 14:47:55 -0400189void GrRenderTargetContext::validate() const {
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400190 SkASSERT(fRenderTargetProxy);
191 fRenderTargetProxy->validate(fContext);
robertphillipsa106c622015-10-16 09:07:06 -0700192
Robert Phillipsf2361d22016-10-25 14:20:06 -0400193 if (fOpList && !fOpList->isClosed()) {
Robert Phillipsdc83b892017-04-13 12:23:54 -0400194 SkASSERT(fRenderTargetProxy->getLastOpList() == fOpList.get());
robertphillipsa106c622015-10-16 09:07:06 -0700195 }
robertphillips2e1e51f2015-10-15 08:01:48 -0700196}
197#endif
198
Brian Osman11052242016-10-27 14:47:55 -0400199GrRenderTargetContext::~GrRenderTargetContext() {
joshualitt1de610a2016-01-06 08:26:09 -0800200 ASSERT_SINGLE_OWNER
robertphillipsa106c622015-10-16 09:07:06 -0700201}
202
Robert Phillipsf200a902017-01-30 13:27:37 -0500203GrTextureProxy* GrRenderTargetContext::asTextureProxy() {
Robert Phillipseaa86252016-11-08 13:49:39 +0000204 return fRenderTargetProxy->asTextureProxy();
205}
206
Greg Daniele252f082017-10-23 16:05:23 -0400207const GrTextureProxy* GrRenderTargetContext::asTextureProxy() const {
208 return fRenderTargetProxy->asTextureProxy();
209}
210
Robert Phillipsf200a902017-01-30 13:27:37 -0500211sk_sp<GrTextureProxy> GrRenderTargetContext::asTextureProxyRef() {
212 return sk_ref_sp(fRenderTargetProxy->asTextureProxy());
213}
214
Greg Daniele252f082017-10-23 16:05:23 -0400215GrMipMapped GrRenderTargetContext::mipMapped() const {
216 if (const GrTextureProxy* proxy = this->asTextureProxy()) {
217 return proxy->mipMapped();
218 }
219 return GrMipMapped::kNo;
220}
221
Robert Phillips2de8cfa2017-06-28 10:33:41 -0400222GrRenderTargetOpList* GrRenderTargetContext::getRTOpList() {
joshualitt1de610a2016-01-06 08:26:09 -0800223 ASSERT_SINGLE_OWNER
robertphillipsa106c622015-10-16 09:07:06 -0700224 SkDEBUGCODE(this->validate();)
225
Robert Phillipsf2361d22016-10-25 14:20:06 -0400226 if (!fOpList || fOpList->isClosed()) {
Robert Phillips941d1442017-06-14 16:37:02 -0400227 fOpList = this->drawingManager()->newRTOpList(fRenderTargetProxy.get(), fManagedOpList);
robertphillipsa106c622015-10-16 09:07:06 -0700228 }
229
Robert Phillipsdc83b892017-04-13 12:23:54 -0400230 return fOpList.get();
robertphillipsa106c622015-10-16 09:07:06 -0700231}
232
Robert Phillips2de8cfa2017-06-28 10:33:41 -0400233GrOpList* GrRenderTargetContext::getOpList() {
234 return this->getRTOpList();
robertphillipsea461502015-05-26 11:38:03 -0700235}
236
Herb Derbycddab252018-07-16 11:19:04 -0400237void GrRenderTargetContext::drawGlyphRunList(
238 const GrClip& clip, const SkMatrix& viewMatrix,
Robert Phillipse4643cc2018-08-14 13:01:29 -0400239 const SkGlyphRunList& blob) {
joshualitt1de610a2016-01-06 08:26:09 -0800240 ASSERT_SINGLE_OWNER
robertphillips2d70dcb2015-10-06 07:38:23 -0700241 RETURN_IF_ABANDONED
robertphillips2e1e51f2015-10-15 08:01:48 -0700242 SkDEBUGCODE(this->validate();)
Herb Derbycddab252018-07-16 11:19:04 -0400243 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawGlyphRunList", fContext);
robertphillips2d70dcb2015-10-06 07:38:23 -0700244
Herb Derby26cbe512018-05-24 14:39:01 -0400245 GrTextContext* atlasTextContext = this->drawingManager()->getTextContext();
Herb Derbycddab252018-07-16 11:19:04 -0400246 atlasTextContext->drawGlyphRunList(fContext, fTextTarget.get(), clip, viewMatrix,
Robert Phillipse4643cc2018-08-14 13:01:29 -0400247 fSurfaceProps, blob);
robertphillipsea461502015-05-26 11:38:03 -0700248}
249
Brian Osman11052242016-10-27 14:47:55 -0400250void GrRenderTargetContext::discard() {
joshualitt1de610a2016-01-06 08:26:09 -0800251 ASSERT_SINGLE_OWNER
robertphillipsea461502015-05-26 11:38:03 -0700252 RETURN_IF_ABANDONED
robertphillips2e1e51f2015-10-15 08:01:48 -0700253 SkDEBUGCODE(this->validate();)
Robert Phillips6b47c7d2017-08-29 07:24:09 -0400254 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "discard", fContext);
robertphillips2e1e51f2015-10-15 08:01:48 -0700255
Robert Phillips72152832017-01-25 17:31:35 -0500256 AutoCheckFlush acf(this->drawingManager());
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400257
Robert Phillips380b90c2017-08-30 07:41:07 -0400258 this->getRTOpList()->discard();
robertphillipsea461502015-05-26 11:38:03 -0700259}
260
Brian Osman11052242016-10-27 14:47:55 -0400261void GrRenderTargetContext::clear(const SkIRect* rect,
262 const GrColor color,
Chris Dalton344e9032017-12-11 15:42:09 -0700263 CanClearFullscreen canClearFullscreen) {
joshualitt1de610a2016-01-06 08:26:09 -0800264 ASSERT_SINGLE_OWNER
robertphillipsea461502015-05-26 11:38:03 -0700265 RETURN_IF_ABANDONED
robertphillips2e1e51f2015-10-15 08:01:48 -0700266 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400267 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "clear", fContext);
robertphillipsea461502015-05-26 11:38:03 -0700268
Robert Phillips72152832017-01-25 17:31:35 -0500269 AutoCheckFlush acf(this->drawingManager());
Chris Dalton344e9032017-12-11 15:42:09 -0700270 this->internalClear(rect ? GrFixedClip(*rect) : GrFixedClip::Disabled(), color,
271 canClearFullscreen);
csmartdalton29df7602016-08-31 11:55:52 -0700272}
robertphillips9199a9f2016-07-13 07:48:43 -0700273
Robert Phillips784b7bf2016-12-09 13:35:02 -0500274void GrRenderTargetContextPriv::absClear(const SkIRect* clearRect, const GrColor color) {
275 ASSERT_SINGLE_OWNER_PRIV
276 RETURN_IF_ABANDONED_PRIV
277 SkDEBUGCODE(fRenderTargetContext->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400278 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContextPriv", "absClear",
279 fRenderTargetContext->fContext);
Robert Phillips784b7bf2016-12-09 13:35:02 -0500280
Robert Phillips72152832017-01-25 17:31:35 -0500281 AutoCheckFlush acf(fRenderTargetContext->drawingManager());
Robert Phillips784b7bf2016-12-09 13:35:02 -0500282
Brian Salomonbb5711a2017-05-17 13:49:59 -0400283 SkIRect rtRect = SkIRect::MakeWH(fRenderTargetContext->fRenderTargetProxy->worstCaseWidth(),
284 fRenderTargetContext->fRenderTargetProxy->worstCaseHeight());
Robert Phillips784b7bf2016-12-09 13:35:02 -0500285
286 if (clearRect) {
287 if (clearRect->contains(rtRect)) {
288 clearRect = nullptr; // full screen
289 } else {
290 if (!rtRect.intersect(*clearRect)) {
291 return;
292 }
293 }
294 }
295
296 // TODO: in a post-MDB world this should be handled at the OpList level.
297 // An op-list that is initially cleared and has no other ops should receive an
298 // extra draw.
Brian Salomon43f8bf02017-10-18 08:33:29 -0400299 // This path doesn't handle coalescing of full screen clears b.c. it
300 // has to clear the entire render target - not just the content area.
301 // It could be done but will take more finagling.
Robert Phillips7c525e62018-06-12 10:11:12 -0400302 std::unique_ptr<GrOp> op(GrClearOp::Make(fRenderTargetContext->fContext, rtRect,
303 color, !clearRect));
Brian Salomon43f8bf02017-10-18 08:33:29 -0400304 if (!op) {
305 return;
Robert Phillips784b7bf2016-12-09 13:35:02 -0500306 }
Brian Salomon43f8bf02017-10-18 08:33:29 -0400307 fRenderTargetContext->getRTOpList()->addOp(std::move(op), *fRenderTargetContext->caps());
Robert Phillips784b7bf2016-12-09 13:35:02 -0500308}
309
Brian Osman11052242016-10-27 14:47:55 -0400310void GrRenderTargetContextPriv::clear(const GrFixedClip& clip,
311 const GrColor color,
Chris Dalton344e9032017-12-11 15:42:09 -0700312 CanClearFullscreen canClearFullscreen) {
csmartdalton29df7602016-08-31 11:55:52 -0700313 ASSERT_SINGLE_OWNER_PRIV
314 RETURN_IF_ABANDONED_PRIV
Brian Osman11052242016-10-27 14:47:55 -0400315 SkDEBUGCODE(fRenderTargetContext->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400316 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContextPriv", "clear",
317 fRenderTargetContext->fContext);
csmartdalton29df7602016-08-31 11:55:52 -0700318
Robert Phillips72152832017-01-25 17:31:35 -0500319 AutoCheckFlush acf(fRenderTargetContext->drawingManager());
Chris Dalton344e9032017-12-11 15:42:09 -0700320 fRenderTargetContext->internalClear(clip, color, canClearFullscreen);
csmartdalton29df7602016-08-31 11:55:52 -0700321}
322
Brian Osman11052242016-10-27 14:47:55 -0400323void GrRenderTargetContext::internalClear(const GrFixedClip& clip,
324 const GrColor color,
Chris Dalton344e9032017-12-11 15:42:09 -0700325 CanClearFullscreen canClearFullscreen) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700326 bool isFull = false;
327 if (!clip.hasWindowRectangles()) {
Brian Salomond818ebf2018-07-02 14:08:49 +0000328 isFull = !clip.scissorEnabled() ||
Chris Dalton344e9032017-12-11 15:42:09 -0700329 (CanClearFullscreen::kYes == canClearFullscreen &&
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400330 this->caps()->preferFullscreenClears()) ||
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700331 clip.scissorRect().contains(SkIRect::MakeWH(this->width(), this->height()));
332 }
robertphillips9199a9f2016-07-13 07:48:43 -0700333
Brian Salomon43f8bf02017-10-18 08:33:29 -0400334 if (isFull) {
Robert Phillips7c525e62018-06-12 10:11:12 -0400335 this->getRTOpList()->fullClear(fContext, color);
robertphillips9199a9f2016-07-13 07:48:43 -0700336 } else {
Robert Phillips7c525e62018-06-12 10:11:12 -0400337 std::unique_ptr<GrOp> op(GrClearOp::Make(fContext, clip, color, this->asSurfaceProxy()));
Brian Salomon42521e82016-12-07 16:44:58 -0500338 if (!op) {
csmartdalton29df7602016-08-31 11:55:52 -0700339 return;
340 }
Robert Phillips2de8cfa2017-06-28 10:33:41 -0400341 this->getRTOpList()->addOp(std::move(op), *this->caps());
robertphillips9199a9f2016-07-13 07:48:43 -0700342 }
robertphillipsea461502015-05-26 11:38:03 -0700343}
344
Brian Osman11052242016-10-27 14:47:55 -0400345void GrRenderTargetContext::drawPaint(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -0500346 GrPaint&& paint,
Brian Osman11052242016-10-27 14:47:55 -0400347 const SkMatrix& viewMatrix) {
joshualitt1de610a2016-01-06 08:26:09 -0800348 ASSERT_SINGLE_OWNER
robertphillipsea461502015-05-26 11:38:03 -0700349 RETURN_IF_ABANDONED
robertphillips2e1e51f2015-10-15 08:01:48 -0700350 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400351 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawPaint", fContext);
robertphillips2e1e51f2015-10-15 08:01:48 -0700352
robertphillipsea461502015-05-26 11:38:03 -0700353 // set rect to be big enough to fill the space, but not super-huge, so we
354 // don't overflow fixed-point implementations
robertphillips13a7eee2016-08-31 15:06:24 -0700355
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400356 SkRect r = fRenderTargetProxy->getBoundsRect();
robertphillipsea461502015-05-26 11:38:03 -0700357
bsalomoncb31e512016-08-26 10:48:19 -0700358 SkRRect rrect;
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500359 GrAA aa;
bsalomoncb31e512016-08-26 10:48:19 -0700360 // Check if we can replace a clipRRect()/drawPaint() with a drawRRect(). We only do the
361 // transformation for non-rect rrects. Rects caused a performance regression on an Android
362 // test that needs investigation. We also skip cases where there are fragment processors
363 // because they may depend on having correct local coords and this path draws in device space
364 // without a local matrix.
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500365 if (!paint.numTotalFragmentProcessors() && clip.isRRect(r, &rrect, &aa) && !rrect.isRect()) {
Brian Salomon82f44312017-01-11 13:42:54 -0500366 this->drawRRect(GrNoClip(), std::move(paint), aa, SkMatrix::I(), rrect,
367 GrStyle::SimpleFill());
bsalomoncb31e512016-08-26 10:48:19 -0700368 return;
369 }
370
robertphillipsea461502015-05-26 11:38:03 -0700371
372 bool isPerspective = viewMatrix.hasPerspective();
373
374 // We attempt to map r by the inverse matrix and draw that. mapRect will
375 // map the four corners and bound them with a new rect. This will not
376 // produce a correct result for some perspective matrices.
377 if (!isPerspective) {
reeda39667c2016-08-22 06:39:49 -0700378 if (!SkMatrixPriv::InverseMapRect(viewMatrix, &r, r)) {
robertphillipsea461502015-05-26 11:38:03 -0700379 return;
380 }
Brian Salomon82f44312017-01-11 13:42:54 -0500381 this->drawRect(clip, std::move(paint), GrAA::kNo, viewMatrix, r);
robertphillipsea461502015-05-26 11:38:03 -0700382 } else {
383 SkMatrix localMatrix;
384 if (!viewMatrix.invert(&localMatrix)) {
robertphillipsea461502015-05-26 11:38:03 -0700385 return;
386 }
387
Robert Phillips72152832017-01-25 17:31:35 -0500388 AutoCheckFlush acf(this->drawingManager());
robertphillipsea461502015-05-26 11:38:03 -0700389
Brian Salomonbaaf4392017-06-15 09:59:23 -0400390 std::unique_ptr<GrDrawOp> op = GrRectOpFactory::MakeNonAAFillWithLocalMatrix(
Robert Phillips7c525e62018-06-12 10:11:12 -0400391 fContext, std::move(paint), SkMatrix::I(), localMatrix, r, GrAAType::kNone);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400392 this->addDrawOp(clip, std::move(op));
robertphillipsea461502015-05-26 11:38:03 -0700393 }
394}
395
robertphillipsea461502015-05-26 11:38:03 -0700396static inline bool rect_contains_inclusive(const SkRect& rect, const SkPoint& point) {
397 return point.fX >= rect.fLeft && point.fX <= rect.fRight &&
398 point.fY >= rect.fTop && point.fY <= rect.fBottom;
399}
400
csmartdalton97f6cd52016-07-13 13:37:08 -0700401// Attempts to crop a rect and optional local rect to the clip boundaries.
402// Returns false if the draw can be skipped entirely.
robertphillips13a7eee2016-08-31 15:06:24 -0700403static bool crop_filled_rect(int width, int height, const GrClip& clip,
csmartdalton97f6cd52016-07-13 13:37:08 -0700404 const SkMatrix& viewMatrix, SkRect* rect,
405 SkRect* localRect = nullptr) {
406 if (!viewMatrix.rectStaysRect()) {
407 return true;
408 }
409
csmartdalton97f6cd52016-07-13 13:37:08 -0700410 SkIRect clipDevBounds;
411 SkRect clipBounds;
csmartdalton97f6cd52016-07-13 13:37:08 -0700412
robertphillips13a7eee2016-08-31 15:06:24 -0700413 clip.getConservativeBounds(width, height, &clipDevBounds);
reeda39667c2016-08-22 06:39:49 -0700414 if (!SkMatrixPriv::InverseMapRect(viewMatrix, &clipBounds, SkRect::Make(clipDevBounds))) {
415 return false;
416 }
csmartdalton97f6cd52016-07-13 13:37:08 -0700417
418 if (localRect) {
419 if (!rect->intersects(clipBounds)) {
420 return false;
421 }
422 const SkScalar dx = localRect->width() / rect->width();
423 const SkScalar dy = localRect->height() / rect->height();
424 if (clipBounds.fLeft > rect->fLeft) {
425 localRect->fLeft += (clipBounds.fLeft - rect->fLeft) * dx;
426 rect->fLeft = clipBounds.fLeft;
427 }
428 if (clipBounds.fTop > rect->fTop) {
429 localRect->fTop += (clipBounds.fTop - rect->fTop) * dy;
430 rect->fTop = clipBounds.fTop;
431 }
432 if (clipBounds.fRight < rect->fRight) {
433 localRect->fRight -= (rect->fRight - clipBounds.fRight) * dx;
434 rect->fRight = clipBounds.fRight;
435 }
436 if (clipBounds.fBottom < rect->fBottom) {
437 localRect->fBottom -= (rect->fBottom - clipBounds.fBottom) * dy;
438 rect->fBottom = clipBounds.fBottom;
439 }
440 return true;
441 }
442
443 return rect->intersect(clipBounds);
444}
445
Brian Osman11052242016-10-27 14:47:55 -0400446bool GrRenderTargetContext::drawFilledRect(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -0500447 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500448 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -0400449 const SkMatrix& viewMatrix,
450 const SkRect& rect,
451 const GrUserStencilSettings* ss) {
csmartdalton97f6cd52016-07-13 13:37:08 -0700452 SkRect croppedRect = rect;
Robert Phillips784b7bf2016-12-09 13:35:02 -0500453 if (!crop_filled_rect(this->width(), this->height(), clip, viewMatrix, &croppedRect)) {
csmartdalton97f6cd52016-07-13 13:37:08 -0700454 return true;
455 }
robertphillips44302392016-07-08 14:43:03 -0700456
Brian Salomon7c8460e2017-05-12 11:36:10 -0400457 GrAAType aaType = this->chooseAAType(aa, GrAllowMixedSamples::kNo);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400458 std::unique_ptr<GrDrawOp> op;
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500459 if (GrAAType::kCoverage == aaType) {
Robert Phillips7c525e62018-06-12 10:11:12 -0400460 op = GrRectOpFactory::MakeAAFill(fContext, std::move(paint), viewMatrix, croppedRect, ss);
robertphillips391395d2016-03-02 09:26:36 -0800461 } else {
Robert Phillips7c525e62018-06-12 10:11:12 -0400462 op = GrRectOpFactory::MakeNonAAFill(fContext, std::move(paint), viewMatrix, croppedRect,
463 aaType, ss);
robertphillips391395d2016-03-02 09:26:36 -0800464 }
Brian Salomonbaaf4392017-06-15 09:59:23 -0400465 if (!op) {
466 return false;
467 }
468 this->addDrawOp(clip, std::move(op));
469 return true;
robertphillips391395d2016-03-02 09:26:36 -0800470}
471
Brian Osman11052242016-10-27 14:47:55 -0400472void GrRenderTargetContext::drawRect(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -0500473 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500474 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -0400475 const SkMatrix& viewMatrix,
476 const SkRect& rect,
477 const GrStyle* style) {
bsalomon6663acf2016-05-10 09:14:17 -0700478 if (!style) {
479 style = &GrStyle::SimpleFill();
480 }
joshualitt1de610a2016-01-06 08:26:09 -0800481 ASSERT_SINGLE_OWNER
robertphillipsea461502015-05-26 11:38:03 -0700482 RETURN_IF_ABANDONED
robertphillips2e1e51f2015-10-15 08:01:48 -0700483 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400484 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawRect", fContext);
robertphillips2e1e51f2015-10-15 08:01:48 -0700485
bsalomon6663acf2016-05-10 09:14:17 -0700486 // Path effects should've been devolved to a path in SkGpuDevice
487 SkASSERT(!style->pathEffect());
robertphillipsea461502015-05-26 11:38:03 -0700488
Robert Phillips72152832017-01-25 17:31:35 -0500489 AutoCheckFlush acf(this->drawingManager());
robertphillipsea461502015-05-26 11:38:03 -0700490
bsalomon6663acf2016-05-10 09:14:17 -0700491 const SkStrokeRec& stroke = style->strokeRec();
Robert Phillipsc90b4db2018-04-23 15:12:00 +0000492 if (stroke.getStyle() == SkStrokeRec::kFill_Style && !paint.numCoverageFragmentProcessors()) {
Brian Salomon43f8bf02017-10-18 08:33:29 -0400493 // Check if this is a full RT draw and can be replaced with a clear. We don't bother
494 // checking cases where the RT is fully inside a stroke.
495 SkRect rtRect = fRenderTargetProxy->getBoundsRect();
496 // Does the clip contain the entire RT?
497 if (clip.quickContains(rtRect)) {
498 SkMatrix invM;
499 if (!viewMatrix.invert(&invM)) {
500 return;
501 }
502 // Does the rect bound the RT?
Brian Salomona33b67c2018-05-17 10:42:14 -0400503 GrQuad quad(rtRect, invM);
Brian Salomon43f8bf02017-10-18 08:33:29 -0400504 if (rect_contains_inclusive(rect, quad.point(0)) &&
505 rect_contains_inclusive(rect, quad.point(1)) &&
506 rect_contains_inclusive(rect, quad.point(2)) &&
507 rect_contains_inclusive(rect, quad.point(3))) {
508 // Will it blend?
509 GrColor clearColor;
510 if (paint.isConstantBlendedColor(&clearColor)) {
Chris Dalton344e9032017-12-11 15:42:09 -0700511 this->clear(nullptr, clearColor,
512 GrRenderTargetContext::CanClearFullscreen::kYes);
robertphillipsea461502015-05-26 11:38:03 -0700513 return;
514 }
515 }
516 }
robertphillips44302392016-07-08 14:43:03 -0700517
Brian Salomon82f44312017-01-11 13:42:54 -0500518 if (this->drawFilledRect(clip, std::move(paint), aa, viewMatrix, rect, nullptr)) {
robertphillips44302392016-07-08 14:43:03 -0700519 return;
520 }
bsalomona7d85ba2016-07-06 11:54:59 -0700521 } else if (stroke.getStyle() == SkStrokeRec::kStroke_Style ||
522 stroke.getStyle() == SkStrokeRec::kHairline_Style) {
523 if ((!rect.width() || !rect.height()) &&
524 SkStrokeRec::kHairline_Style != stroke.getStyle()) {
525 SkScalar r = stroke.getWidth() / 2;
526 // TODO: Move these stroke->fill fallbacks to GrShape?
527 switch (stroke.getJoin()) {
528 case SkPaint::kMiter_Join:
Brian Salomon82f44312017-01-11 13:42:54 -0500529 this->drawRect(
530 clip, std::move(paint), aa, viewMatrix,
531 {rect.fLeft - r, rect.fTop - r, rect.fRight + r, rect.fBottom + r},
532 &GrStyle::SimpleFill());
bsalomona7d85ba2016-07-06 11:54:59 -0700533 return;
534 case SkPaint::kRound_Join:
535 // Raster draws nothing when both dimensions are empty.
536 if (rect.width() || rect.height()){
537 SkRRect rrect = SkRRect::MakeRectXY(rect.makeOutset(r, r), r, r);
Brian Salomon82f44312017-01-11 13:42:54 -0500538 this->drawRRect(clip, std::move(paint), aa, viewMatrix, rrect,
539 GrStyle::SimpleFill());
bsalomona7d85ba2016-07-06 11:54:59 -0700540 return;
541 }
542 case SkPaint::kBevel_Join:
543 if (!rect.width()) {
Brian Salomon82f44312017-01-11 13:42:54 -0500544 this->drawRect(clip, std::move(paint), aa, viewMatrix,
bsalomona7d85ba2016-07-06 11:54:59 -0700545 {rect.fLeft - r, rect.fTop, rect.fRight + r, rect.fBottom},
546 &GrStyle::SimpleFill());
547 } else {
Brian Salomon82f44312017-01-11 13:42:54 -0500548 this->drawRect(clip, std::move(paint), aa, viewMatrix,
bsalomona7d85ba2016-07-06 11:54:59 -0700549 {rect.fLeft, rect.fTop - r, rect.fRight, rect.fBottom + r},
550 &GrStyle::SimpleFill());
551 }
552 return;
553 }
554 }
robertphillips44302392016-07-08 14:43:03 -0700555
Brian Salomonbaaf4392017-06-15 09:59:23 -0400556 std::unique_ptr<GrDrawOp> op;
robertphillips44302392016-07-08 14:43:03 -0700557
Brian Salomon7c8460e2017-05-12 11:36:10 -0400558 GrAAType aaType = this->chooseAAType(aa, GrAllowMixedSamples::kNo);
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500559 if (GrAAType::kCoverage == aaType) {
cdaltonbb539482016-01-04 09:48:25 -0800560 // The stroke path needs the rect to remain axis aligned (no rotation or skew).
561 if (viewMatrix.rectStaysRect()) {
Robert Phillips7c525e62018-06-12 10:11:12 -0400562 op = GrRectOpFactory::MakeAAStroke(fContext, std::move(paint), viewMatrix, rect,
563 stroke);
cdaltonbb539482016-01-04 09:48:25 -0800564 }
robertphillipsea461502015-05-26 11:38:03 -0700565 } else {
Robert Phillips7c525e62018-06-12 10:11:12 -0400566 op = GrRectOpFactory::MakeNonAAStroke(fContext, std::move(paint), viewMatrix, rect,
567 stroke, aaType);
robertphillips391395d2016-03-02 09:26:36 -0800568 }
robertphillips4bc31812016-03-01 12:22:49 -0800569
Brian Salomon42521e82016-12-07 16:44:58 -0500570 if (op) {
Brian Salomonbaaf4392017-06-15 09:59:23 -0400571 this->addDrawOp(clip, std::move(op));
robertphillips44302392016-07-08 14:43:03 -0700572 return;
robertphillips4bc31812016-03-01 12:22:49 -0800573 }
robertphillips4bc31812016-03-01 12:22:49 -0800574 }
Brian Salomon2fad74a2017-12-20 13:28:55 -0500575 this->drawShapeUsingPathRenderer(clip, std::move(paint), aa, viewMatrix, GrShape(rect, *style));
robertphillipsea461502015-05-26 11:38:03 -0700576}
577
Robert Phillipsec2249f2016-11-09 08:54:35 -0500578int GrRenderTargetContextPriv::maxWindowRectangles() const {
579 return fRenderTargetContext->fRenderTargetProxy->maxWindowRectangles(
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400580 *fRenderTargetContext->caps());
Robert Phillipsec2249f2016-11-09 08:54:35 -0500581}
582
Jim Van Verth6a40abc2017-11-02 16:56:09 +0000583void GrRenderTargetContextPriv::clearStencilClip(const GrFixedClip& clip, bool insideStencilMask) {
robertphillips976f5f02016-06-03 10:59:20 -0700584 ASSERT_SINGLE_OWNER_PRIV
585 RETURN_IF_ABANDONED_PRIV
Brian Osman11052242016-10-27 14:47:55 -0400586 SkDEBUGCODE(fRenderTargetContext->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400587 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContextPriv", "clearStencilClip",
588 fRenderTargetContext->fContext);
robertphillips976f5f02016-06-03 10:59:20 -0700589
Robert Phillips72152832017-01-25 17:31:35 -0500590 AutoCheckFlush acf(fRenderTargetContext->drawingManager());
Robert Phillipsb9a02a12017-04-06 11:08:40 -0400591
Robert Phillips7c525e62018-06-12 10:11:12 -0400592 GrRenderTargetProxy* rtProxy = fRenderTargetContext->fRenderTargetProxy.get();
593 std::unique_ptr<GrOp> op(GrClearStencilClipOp::Make(fRenderTargetContext->fContext,
594 clip, insideStencilMask, rtProxy));
Robert Phillipsb9a02a12017-04-06 11:08:40 -0400595 if (!op) {
Robert Phillipse60ad622016-11-17 10:22:48 -0500596 return;
597 }
Robert Phillips2de8cfa2017-06-28 10:33:41 -0400598 fRenderTargetContext->getRTOpList()->addOp(std::move(op), *fRenderTargetContext->caps());
robertphillips976f5f02016-06-03 10:59:20 -0700599}
600
Chris Daltonbbfd5162017-11-07 13:35:22 -0700601void GrRenderTargetContextPriv::stencilPath(const GrHardClip& clip,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500602 GrAAType aaType,
Brian Osman11052242016-10-27 14:47:55 -0400603 const SkMatrix& viewMatrix,
604 const GrPath* path) {
Brian Salomon467921e2017-03-06 16:17:12 -0500605 ASSERT_SINGLE_OWNER_PRIV
606 RETURN_IF_ABANDONED_PRIV
607 SkDEBUGCODE(fRenderTargetContext->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400608 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContextPriv", "stencilPath",
609 fRenderTargetContext->fContext);
Brian Salomon467921e2017-03-06 16:17:12 -0500610
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500611 SkASSERT(aaType != GrAAType::kCoverage);
Brian Salomon467921e2017-03-06 16:17:12 -0500612
613 bool useHWAA = GrAATypeIsHW(aaType);
614 // TODO: extract portions of checkDraw that are relevant to path stenciling.
615 SkASSERT(path);
616 SkASSERT(fRenderTargetContext->caps()->shaderCaps()->pathRenderingSupport());
617
618 // FIXME: Use path bounds instead of this WAR once
619 // https://bugs.chromium.org/p/skia/issues/detail?id=5640 is resolved.
620 SkRect bounds = SkRect::MakeIWH(fRenderTargetContext->width(), fRenderTargetContext->height());
621
622 // Setup clip
Chris Daltonbbfd5162017-11-07 13:35:22 -0700623 GrAppliedHardClip appliedClip;
624 if (!clip.apply(fRenderTargetContext->width(), fRenderTargetContext->height(), &appliedClip,
625 &bounds)) {
Brian Salomon467921e2017-03-06 16:17:12 -0500626 return;
627 }
628
Robert Phillips65048132017-08-10 08:44:49 -0400629 fRenderTargetContext->setNeedsStencil();
Brian Salomon467921e2017-03-06 16:17:12 -0500630
Robert Phillips7c525e62018-06-12 10:11:12 -0400631 std::unique_ptr<GrOp> op = GrStencilPathOp::Make(fRenderTargetContext->fContext,
632 viewMatrix,
Brian Salomon467921e2017-03-06 16:17:12 -0500633 useHWAA,
634 path->getFillType(),
635 appliedClip.hasStencilClip(),
Brian Salomon467921e2017-03-06 16:17:12 -0500636 appliedClip.scissorState(),
Brian Salomon467921e2017-03-06 16:17:12 -0500637 path);
Robert Phillipsb9a02a12017-04-06 11:08:40 -0400638 if (!op) {
639 return;
640 }
Brian Salomon97180af2017-03-14 13:42:58 -0400641 op->setClippedBounds(bounds);
Robert Phillips2de8cfa2017-06-28 10:33:41 -0400642 fRenderTargetContext->getRTOpList()->addOp(std::move(op), *fRenderTargetContext->caps());
robertphillips976f5f02016-06-03 10:59:20 -0700643}
644
Chris Daltonbbfd5162017-11-07 13:35:22 -0700645void GrRenderTargetContextPriv::stencilRect(const GrHardClip& clip,
Brian Osman11052242016-10-27 14:47:55 -0400646 const GrUserStencilSettings* ss,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500647 GrAAType aaType,
Brian Osman11052242016-10-27 14:47:55 -0400648 const SkMatrix& viewMatrix,
649 const SkRect& rect) {
robertphillips976f5f02016-06-03 10:59:20 -0700650 ASSERT_SINGLE_OWNER_PRIV
651 RETURN_IF_ABANDONED_PRIV
Brian Osman11052242016-10-27 14:47:55 -0400652 SkDEBUGCODE(fRenderTargetContext->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400653 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContextPriv", "stencilRect",
654 fRenderTargetContext->fContext);
655
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500656 SkASSERT(GrAAType::kCoverage != aaType);
Robert Phillips72152832017-01-25 17:31:35 -0500657 AutoCheckFlush acf(fRenderTargetContext->drawingManager());
robertphillips976f5f02016-06-03 10:59:20 -0700658
659 GrPaint paint;
Brian Salomona1633922017-01-09 11:46:10 -0500660 paint.setXPFactory(GrDisableColorXPFactory::Get());
Robert Phillips7c525e62018-06-12 10:11:12 -0400661 std::unique_ptr<GrDrawOp> op = GrRectOpFactory::MakeNonAAFill(fRenderTargetContext->fContext,
662 std::move(paint), viewMatrix,
663 rect, aaType, ss);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400664 fRenderTargetContext->addDrawOp(clip, std::move(op));
robertphillips976f5f02016-06-03 10:59:20 -0700665}
666
Chris Daltonbbfd5162017-11-07 13:35:22 -0700667bool GrRenderTargetContextPriv::drawAndStencilRect(const GrHardClip& clip,
Brian Osman11052242016-10-27 14:47:55 -0400668 const GrUserStencilSettings* ss,
669 SkRegion::Op op,
670 bool invert,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500671 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -0400672 const SkMatrix& viewMatrix,
673 const SkRect& rect) {
robertphillips391395d2016-03-02 09:26:36 -0800674 ASSERT_SINGLE_OWNER_PRIV
675 RETURN_FALSE_IF_ABANDONED_PRIV
Brian Osman11052242016-10-27 14:47:55 -0400676 SkDEBUGCODE(fRenderTargetContext->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400677 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContextPriv", "drawAndStencilRect",
678 fRenderTargetContext->fContext);
robertphillips391395d2016-03-02 09:26:36 -0800679
Robert Phillips72152832017-01-25 17:31:35 -0500680 AutoCheckFlush acf(fRenderTargetContext->drawingManager());
robertphillips391395d2016-03-02 09:26:36 -0800681
682 GrPaint paint;
robertphillips391395d2016-03-02 09:26:36 -0800683 paint.setCoverageSetOpXPFactory(op, invert);
684
Brian Salomon82f44312017-01-11 13:42:54 -0500685 if (fRenderTargetContext->drawFilledRect(clip, std::move(paint), aa, viewMatrix, rect, ss)) {
robertphillips391395d2016-03-02 09:26:36 -0800686 return true;
687 }
robertphillips391395d2016-03-02 09:26:36 -0800688 SkPath path;
689 path.setIsVolatile(true);
690 path.addRect(rect);
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500691 return this->drawAndStencilPath(clip, ss, op, invert, aa, viewMatrix, path);
robertphillips391395d2016-03-02 09:26:36 -0800692}
693
Brian Osman11052242016-10-27 14:47:55 -0400694void GrRenderTargetContext::fillRectToRect(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -0500695 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500696 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -0400697 const SkMatrix& viewMatrix,
698 const SkRect& rectToDraw,
699 const SkRect& localRect) {
joshualitt1de610a2016-01-06 08:26:09 -0800700 ASSERT_SINGLE_OWNER
robertphillipsea461502015-05-26 11:38:03 -0700701 RETURN_IF_ABANDONED
robertphillips2e1e51f2015-10-15 08:01:48 -0700702 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400703 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "fillRectToRect", fContext);
robertphillipsea461502015-05-26 11:38:03 -0700704
csmartdalton97f6cd52016-07-13 13:37:08 -0700705 SkRect croppedRect = rectToDraw;
706 SkRect croppedLocalRect = localRect;
robertphillips13a7eee2016-08-31 15:06:24 -0700707 if (!crop_filled_rect(this->width(), this->height(), clip, viewMatrix,
708 &croppedRect, &croppedLocalRect)) {
csmartdalton97f6cd52016-07-13 13:37:08 -0700709 return;
710 }
711
Robert Phillips72152832017-01-25 17:31:35 -0500712 AutoCheckFlush acf(this->drawingManager());
csmartdaltona7f29642016-07-07 08:49:11 -0700713
Brian Salomon7c8460e2017-05-12 11:36:10 -0400714 GrAAType aaType = this->chooseAAType(aa, GrAllowMixedSamples::kNo);
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500715 if (GrAAType::kCoverage != aaType) {
Brian Salomonbaaf4392017-06-15 09:59:23 -0400716 std::unique_ptr<GrDrawOp> op = GrRectOpFactory::MakeNonAAFillWithLocalRect(
Robert Phillips7c525e62018-06-12 10:11:12 -0400717 fContext, std::move(paint), viewMatrix, croppedRect, croppedLocalRect, aaType);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400718 this->addDrawOp(clip, std::move(op));
csmartdaltonfc49d562016-07-26 17:05:47 -0700719 return;
joshualitt04194f32016-01-13 10:08:27 -0800720 }
bsalomonbb243832016-07-22 07:10:19 -0700721
Brian Salomonbaaf4392017-06-15 09:59:23 -0400722 std::unique_ptr<GrDrawOp> op = GrRectOpFactory::MakeAAFillWithLocalRect(
Robert Phillips7c525e62018-06-12 10:11:12 -0400723 fContext, std::move(paint), viewMatrix, croppedRect, croppedLocalRect);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400724 if (op) {
725 this->addDrawOp(clip, std::move(op));
csmartdaltonfc49d562016-07-26 17:05:47 -0700726 return;
727 }
728
729 SkMatrix viewAndUnLocalMatrix;
730 if (!viewAndUnLocalMatrix.setRectToRect(localRect, rectToDraw, SkMatrix::kFill_ScaleToFit)) {
731 SkDebugf("fillRectToRect called with empty local matrix.\n");
732 return;
733 }
734 viewAndUnLocalMatrix.postConcat(viewMatrix);
735
Brian Salomon2fad74a2017-12-20 13:28:55 -0500736 this->drawShapeUsingPathRenderer(clip, std::move(paint), aa, viewAndUnLocalMatrix,
737 GrShape(localRect));
joshualittb6b513b2015-08-21 10:25:18 -0700738}
739
Brian Salomon34169692017-08-28 15:32:01 -0400740static bool must_filter(const SkRect& src, const SkRect& dst, const SkMatrix& ctm) {
741 // We don't currently look for 90 degree rotations, mirroring, or downscales that sample at
742 // texel centers.
743 if (!ctm.isTranslate()) {
744 return true;
745 }
746 if (src.width() != dst.width() || src.height() != dst.height()) {
747 return true;
748 }
749 // Check that the device space rectangle's fractional offset is the same as the src rectangle,
750 // and that therefore integers in the src image fall on integers in device space.
751 SkScalar x = ctm.getTranslateX(), y = ctm.getTranslateY();
752 x += dst.fLeft; y += dst.fTop;
753 x -= src.fLeft; y -= src.fTop;
754 return !SkScalarIsInt(x) || !SkScalarIsInt(y);
755}
756
Brian Salomonbe3c1d22018-05-21 12:54:39 -0400757void GrRenderTargetContext::drawTexture(const GrClip& clip, sk_sp<GrTextureProxy> proxy,
758 GrSamplerState::Filter filter, GrColor color,
759 const SkRect& srcRect, const SkRect& dstRect, GrAA aa,
Brian Salomonb80ffee2018-05-23 16:39:39 -0400760 SkCanvas::SrcRectConstraint constraint,
Brian Salomonbe3c1d22018-05-21 12:54:39 -0400761 const SkMatrix& viewMatrix,
Brian Osman3ebd3542018-07-30 14:36:53 -0400762 sk_sp<GrColorSpaceXform> textureColorSpaceXform,
763 sk_sp<GrColorSpaceXform> paintColorSpaceXform) {
Brian Salomon34169692017-08-28 15:32:01 -0400764 ASSERT_SINGLE_OWNER
765 RETURN_IF_ABANDONED
766 SkDEBUGCODE(this->validate();)
Brian Salomonbe3c1d22018-05-21 12:54:39 -0400767 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawTexture", fContext);
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400768 if (filter != GrSamplerState::Filter::kNearest && !must_filter(srcRect, dstRect, viewMatrix)) {
769 filter = GrSamplerState::Filter::kNearest;
Brian Salomon34169692017-08-28 15:32:01 -0400770 }
Brian Salomond8eb7b62018-05-25 10:08:05 -0400771 GrAAType aaType = this->chooseAAType(aa, GrAllowMixedSamples::kNo);
772 if (constraint == SkCanvas::kStrict_SrcRectConstraint) {
773 // No need to use a texture domain with nearest filtering unless there is AA bloating.
774 // Also, no need if the srcRect contains the entire texture.
775 if (filter == GrSamplerState::Filter::kNearest && aaType != GrAAType::kCoverage) {
776 constraint = SkCanvas::kFast_SrcRectConstraint;
777 } else if (srcRect.contains(proxy->getWorstCaseBoundsRect())) {
778 constraint = SkCanvas::kFast_SrcRectConstraint;
779 }
780 }
Brian Salomonff9d6d32017-08-30 10:27:49 -0400781 SkRect clippedDstRect = dstRect;
782 SkRect clippedSrcRect = srcRect;
783 if (!crop_filled_rect(this->width(), this->height(), clip, viewMatrix, &clippedDstRect,
784 &clippedSrcRect)) {
785 return;
786 }
Robert Phillips7c525e62018-06-12 10:11:12 -0400787 this->addDrawOp(clip, GrTextureOp::Make(fContext, std::move(proxy), filter, color,
788 clippedSrcRect, clippedDstRect, aaType, constraint,
Brian Osman3ebd3542018-07-30 14:36:53 -0400789 viewMatrix, std::move(textureColorSpaceXform),
790 std::move(paintColorSpaceXform)));
Brian Salomon34169692017-08-28 15:32:01 -0400791}
792
Brian Osman11052242016-10-27 14:47:55 -0400793void GrRenderTargetContext::fillRectWithLocalMatrix(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -0500794 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500795 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -0400796 const SkMatrix& viewMatrix,
797 const SkRect& rectToDraw,
798 const SkMatrix& localMatrix) {
joshualitt1de610a2016-01-06 08:26:09 -0800799 ASSERT_SINGLE_OWNER
joshualittb6b513b2015-08-21 10:25:18 -0700800 RETURN_IF_ABANDONED
robertphillips2e1e51f2015-10-15 08:01:48 -0700801 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400802 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "fillRectWithLocalMatrix", fContext);
joshualittb6b513b2015-08-21 10:25:18 -0700803
csmartdalton97f6cd52016-07-13 13:37:08 -0700804 SkRect croppedRect = rectToDraw;
robertphillips13a7eee2016-08-31 15:06:24 -0700805 if (!crop_filled_rect(this->width(), this->height(), clip, viewMatrix, &croppedRect)) {
csmartdalton97f6cd52016-07-13 13:37:08 -0700806 return;
807 }
808
Robert Phillips72152832017-01-25 17:31:35 -0500809 AutoCheckFlush acf(this->drawingManager());
csmartdaltona7f29642016-07-07 08:49:11 -0700810
Brian Salomon7c8460e2017-05-12 11:36:10 -0400811 GrAAType aaType = this->chooseAAType(aa, GrAllowMixedSamples::kNo);
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500812 if (GrAAType::kCoverage != aaType) {
Brian Salomonbaaf4392017-06-15 09:59:23 -0400813 std::unique_ptr<GrDrawOp> op = GrRectOpFactory::MakeNonAAFillWithLocalMatrix(
Robert Phillips7c525e62018-06-12 10:11:12 -0400814 fContext, std::move(paint), viewMatrix, localMatrix, croppedRect, aaType);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400815 this->addDrawOp(clip, std::move(op));
csmartdaltonfc49d562016-07-26 17:05:47 -0700816 return;
bsalomonc55271f2015-11-09 11:55:57 -0800817 }
robertphillips4bc31812016-03-01 12:22:49 -0800818
Brian Salomonbaaf4392017-06-15 09:59:23 -0400819 std::unique_ptr<GrDrawOp> op = GrRectOpFactory::MakeAAFillWithLocalMatrix(
Robert Phillips7c525e62018-06-12 10:11:12 -0400820 fContext, std::move(paint), viewMatrix, localMatrix, croppedRect);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400821 if (op) {
822 this->addDrawOp(clip, std::move(op));
csmartdaltonfc49d562016-07-26 17:05:47 -0700823 return;
824 }
825
826 SkMatrix viewAndUnLocalMatrix;
827 if (!localMatrix.invert(&viewAndUnLocalMatrix)) {
828 SkDebugf("fillRectWithLocalMatrix called with degenerate local matrix.\n");
829 return;
830 }
831 viewAndUnLocalMatrix.postConcat(viewMatrix);
832
833 SkPath path;
834 path.setIsVolatile(true);
835 path.addRect(rectToDraw);
836 path.transform(localMatrix);
Brian Salomon2fad74a2017-12-20 13:28:55 -0500837 this->drawShapeUsingPathRenderer(clip, std::move(paint), aa, viewAndUnLocalMatrix,
838 GrShape(path));
robertphillipsea461502015-05-26 11:38:03 -0700839}
840
Brian Osman11052242016-10-27 14:47:55 -0400841void GrRenderTargetContext::drawVertices(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -0500842 GrPaint&& paint,
Brian Osman11052242016-10-27 14:47:55 -0400843 const SkMatrix& viewMatrix,
Brian Osmanae0c50c2017-05-25 16:56:34 -0400844 sk_sp<SkVertices> vertices,
Ruiqi Maoc97a3392018-08-15 10:44:19 -0400845 const SkVertices::Bone bones[],
Ruiqi Mao4ec72f72018-07-10 17:21:07 -0400846 int boneCount,
Brian Osmanae0c50c2017-05-25 16:56:34 -0400847 GrPrimitiveType* overridePrimType) {
Brian Salomon199fb872017-02-06 09:41:10 -0500848 ASSERT_SINGLE_OWNER
849 RETURN_IF_ABANDONED
850 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400851 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawVertices", fContext);
Brian Salomon199fb872017-02-06 09:41:10 -0500852
853 AutoCheckFlush acf(this->drawingManager());
854
855 SkASSERT(vertices);
Brian Salomonc2f42542017-07-12 14:11:22 -0400856 GrAAType aaType = this->chooseAAType(GrAA::kNo, GrAllowMixedSamples::kNo);
Brian Salomonf3569f02017-10-24 12:52:33 -0400857 std::unique_ptr<GrDrawOp> op = GrDrawVerticesOp::Make(
Ruiqi Mao4ec72f72018-07-10 17:21:07 -0400858 fContext, std::move(paint), std::move(vertices), bones, boneCount, viewMatrix, aaType,
Brian Salomonf3569f02017-10-24 12:52:33 -0400859 this->colorSpaceInfo().refColorSpaceXformFromSRGB(), overridePrimType);
Brian Salomonc2f42542017-07-12 14:11:22 -0400860 this->addDrawOp(clip, std::move(op));
robertphillipsea461502015-05-26 11:38:03 -0700861}
862
863///////////////////////////////////////////////////////////////////////////////
864
Brian Osman11052242016-10-27 14:47:55 -0400865void GrRenderTargetContext::drawAtlas(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -0500866 GrPaint&& paint,
Brian Osman11052242016-10-27 14:47:55 -0400867 const SkMatrix& viewMatrix,
868 int spriteCount,
869 const SkRSXform xform[],
870 const SkRect texRect[],
871 const SkColor colors[]) {
joshualitt1de610a2016-01-06 08:26:09 -0800872 ASSERT_SINGLE_OWNER
jvanverth31ff7622015-08-07 10:09:28 -0700873 RETURN_IF_ABANDONED
robertphillips2e1e51f2015-10-15 08:01:48 -0700874 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400875 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawAtlas", fContext);
robertphillips2e1e51f2015-10-15 08:01:48 -0700876
Robert Phillips72152832017-01-25 17:31:35 -0500877 AutoCheckFlush acf(this->drawingManager());
halcanary9d524f22016-03-29 09:03:52 -0700878
Brian Salomon0088f942017-07-12 11:51:27 -0400879 GrAAType aaType = this->chooseAAType(GrAA::kNo, GrAllowMixedSamples::kNo);
Robert Phillips7c525e62018-06-12 10:11:12 -0400880 std::unique_ptr<GrDrawOp> op = GrDrawAtlasOp::Make(fContext, std::move(paint), viewMatrix,
881 aaType, spriteCount, xform, texRect, colors);
Brian Salomon0088f942017-07-12 11:51:27 -0400882 this->addDrawOp(clip, std::move(op));
jvanverth31ff7622015-08-07 10:09:28 -0700883}
884
885///////////////////////////////////////////////////////////////////////////////
886
Brian Osman11052242016-10-27 14:47:55 -0400887void GrRenderTargetContext::drawRRect(const GrClip& origClip,
Brian Salomon82f44312017-01-11 13:42:54 -0500888 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500889 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -0400890 const SkMatrix& viewMatrix,
891 const SkRRect& rrect,
892 const GrStyle& style) {
joshualitt1de610a2016-01-06 08:26:09 -0800893 ASSERT_SINGLE_OWNER
robertphillipsea461502015-05-26 11:38:03 -0700894 RETURN_IF_ABANDONED
robertphillips2e1e51f2015-10-15 08:01:48 -0700895 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400896 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawRRect", fContext);
Robert Phillips85290802018-07-02 13:14:28 -0400897
898 const SkStrokeRec& stroke = style.strokeRec();
899 if (stroke.getStyle() == SkStrokeRec::kFill_Style && rrect.isEmpty()) {
robertphillipsea461502015-05-26 11:38:03 -0700900 return;
901 }
902
bsalomon7f0d9f32016-08-15 14:49:10 -0700903 GrNoClip noclip;
904 const GrClip* clip = &origClip;
905#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
906 // The Android framework frequently clips rrects to themselves where the clip is non-aa and the
Brian Salomon42521e82016-12-07 16:44:58 -0500907 // draw is aa. Since our lower level clip code works from op bounds, which are SkRects, it
bsalomon7f0d9f32016-08-15 14:49:10 -0700908 // doesn't detect that the clip can be ignored (modulo antialiasing). The following test
909 // attempts to mitigate the stencil clip cost but will only help when the entire clip stack
910 // can be ignored. We'd prefer to fix this in the framework by removing the clips calls.
911 SkRRect devRRect;
912 if (rrect.transform(viewMatrix, &devRRect) && clip->quickContains(devRRect)) {
913 clip = &noclip;
914 }
915#endif
bsalomon6663acf2016-05-10 09:14:17 -0700916 SkASSERT(!style.pathEffect()); // this should've been devolved to a path in SkGpuDevice
ksakamotoec7f2ac2016-07-05 03:54:53 -0700917
Robert Phillips72152832017-01-25 17:31:35 -0500918 AutoCheckFlush acf(this->drawingManager());
csmartdaltona7f29642016-07-07 08:49:11 -0700919
Brian Salomonea26d6b2018-01-23 20:33:21 +0000920 GrAAType aaType = this->chooseAAType(aa, GrAllowMixedSamples::kNo);
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500921 if (GrAAType::kCoverage == aaType) {
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400922 const GrShaderCaps* shaderCaps = this->caps()->shaderCaps();
Robert Phillips7c525e62018-06-12 10:11:12 -0400923 std::unique_ptr<GrDrawOp> op = GrOvalOpFactory::MakeRRectOp(fContext,
924 std::move(paint),
Brian Salomonea26d6b2018-01-23 20:33:21 +0000925 viewMatrix,
926 rrect,
927 stroke,
928 shaderCaps);
Brian Salomon42521e82016-12-07 16:44:58 -0500929 if (op) {
Brian Salomon05441c42017-05-15 16:45:49 -0400930 this->addDrawOp(*clip, std::move(op));
robertphillipsb56f9272016-02-25 11:03:52 -0800931 return;
932 }
robertphillipsea461502015-05-26 11:38:03 -0700933 }
robertphillipsb56f9272016-02-25 11:03:52 -0800934
Brian Salomon2fad74a2017-12-20 13:28:55 -0500935 this->drawShapeUsingPathRenderer(*clip, std::move(paint), aa, viewMatrix,
936 GrShape(rrect, style));
robertphillipsea461502015-05-26 11:38:03 -0700937}
938
Jim Van Verthc5903412016-11-17 15:27:09 -0500939///////////////////////////////////////////////////////////////////////////////
940
Jim Van Verth3af1af92017-05-18 15:06:54 -0400941static SkPoint3 map(const SkMatrix& m, const SkPoint3& pt) {
942 SkPoint3 result;
943 m.mapXY(pt.fX, pt.fY, (SkPoint*)&result.fX);
944 result.fZ = pt.fZ;
945 return result;
946}
947
948bool GrRenderTargetContext::drawFastShadow(const GrClip& clip,
Jim Van Verth3af1af92017-05-18 15:06:54 -0400949 const SkMatrix& viewMatrix,
950 const SkPath& path,
951 const SkDrawShadowRec& rec) {
Jim Van Verthc5903412016-11-17 15:27:09 -0500952 ASSERT_SINGLE_OWNER
Jim Van Verth3af1af92017-05-18 15:06:54 -0400953 if (this->drawingManager()->wasAbandoned()) {
954 return true;
955 }
Jim Van Verthc5903412016-11-17 15:27:09 -0500956 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -0400957 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawFastShadow", fContext);
Jim Van Verth3af1af92017-05-18 15:06:54 -0400958
959 // check z plane
960 bool tiltZPlane = SkToBool(!SkScalarNearlyZero(rec.fZPlaneParams.fX) ||
961 !SkScalarNearlyZero(rec.fZPlaneParams.fY));
962 bool skipAnalytic = SkToBool(rec.fFlags & SkShadowFlags::kGeometricOnly_ShadowFlag);
963 if (tiltZPlane || skipAnalytic || !viewMatrix.rectStaysRect() || !viewMatrix.isSimilarity()) {
964 return false;
965 }
966
967 SkRRect rrect;
968 SkRect rect;
969 // we can only handle rects, circles, and rrects with circular corners
Mike Reed242135a2018-02-22 13:41:39 -0500970 bool isRRect = path.isRRect(&rrect) && SkRRectPriv::IsSimpleCircular(rrect) &&
Jim Van Verth3af1af92017-05-18 15:06:54 -0400971 rrect.radii(SkRRect::kUpperLeft_Corner).fX > SK_ScalarNearlyZero;
972 if (!isRRect &&
973 path.isOval(&rect) && SkScalarNearlyEqual(rect.width(), rect.height()) &&
974 rect.width() > SK_ScalarNearlyZero) {
975 rrect.setOval(rect);
976 isRRect = true;
977 }
978 if (!isRRect && path.isRect(&rect)) {
979 rrect.setRect(rect);
980 isRRect = true;
981 }
982
983 if (!isRRect) {
984 return false;
985 }
986
Jim Van Verthc5903412016-11-17 15:27:09 -0500987 if (rrect.isEmpty()) {
Jim Van Verth3af1af92017-05-18 15:06:54 -0400988 return true;
Jim Van Verthc5903412016-11-17 15:27:09 -0500989 }
990
Robert Phillips72152832017-01-25 17:31:35 -0500991 AutoCheckFlush acf(this->drawingManager());
Jim Van Verthc5903412016-11-17 15:27:09 -0500992
Jim Van Verth3af1af92017-05-18 15:06:54 -0400993 // transform light
994 SkPoint3 devLightPos = map(viewMatrix, rec.fLightPos);
995
996 // 1/scale
997 SkScalar devToSrcScale = viewMatrix.isScaleTranslate() ?
998 SkScalarInvert(viewMatrix[SkMatrix::kMScaleX]) :
999 sk_float_rsqrt(viewMatrix[SkMatrix::kMScaleX] * viewMatrix[SkMatrix::kMScaleX] +
1000 viewMatrix[SkMatrix::kMSkewX] * viewMatrix[SkMatrix::kMSkewX]);
1001
1002 SkScalar occluderHeight = rec.fZPlaneParams.fZ;
Jim Van Verth3af1af92017-05-18 15:06:54 -04001003 bool transparent = SkToBool(rec.fFlags & SkShadowFlags::kTransparentOccluder_ShadowFlag);
1004
Jim Van Verthb1b80f72018-01-18 15:19:13 -05001005 if (SkColorGetA(rec.fAmbientColor) > 0) {
Jim Van Verth1af03d42017-07-31 09:34:58 -04001006 SkScalar devSpaceInsetWidth = SkDrawShadowMetrics::AmbientBlurRadius(occluderHeight);
1007 const SkScalar umbraRecipAlpha = SkDrawShadowMetrics::AmbientRecipAlpha(occluderHeight);
1008 const SkScalar devSpaceAmbientBlur = devSpaceInsetWidth * umbraRecipAlpha;
Jim Van Verth3af1af92017-05-18 15:06:54 -04001009
1010 // Outset the shadow rrect to the border of the penumbra
1011 SkScalar ambientPathOutset = devSpaceInsetWidth * devToSrcScale;
1012 SkRRect ambientRRect;
1013 SkRect outsetRect = rrect.rect().makeOutset(ambientPathOutset, ambientPathOutset);
1014 // If the rrect was an oval then its outset will also be one.
1015 // We set it explicitly to avoid errors.
1016 if (rrect.isOval()) {
1017 ambientRRect = SkRRect::MakeOval(outsetRect);
1018 } else {
Mike Reed242135a2018-02-22 13:41:39 -05001019 SkScalar outsetRad = SkRRectPriv::GetSimpleRadii(rrect).fX + ambientPathOutset;
Jim Van Verth3af1af92017-05-18 15:06:54 -04001020 ambientRRect = SkRRect::MakeRectXY(outsetRect, outsetRad, outsetRad);
1021 }
1022
Jim Van Verthb1b80f72018-01-18 15:19:13 -05001023 GrColor ambientColor = SkColorToPremulGrColor(rec.fAmbientColor);
Jim Van Verth3af1af92017-05-18 15:06:54 -04001024 if (transparent) {
1025 // set a large inset to force a fill
1026 devSpaceInsetWidth = ambientRRect.width();
1027 }
Jim Van Verth39e71652018-04-23 18:08:45 +00001028 // the fraction of the blur we want to apply is devSpaceInsetWidth/devSpaceAmbientBlur,
1029 // which is just 1/umbraRecipAlpha.
1030 SkScalar blurClamp = SkScalarInvert(umbraRecipAlpha);
1031
Robert Phillips7c525e62018-06-12 10:11:12 -04001032 std::unique_ptr<GrDrawOp> op = GrShadowRRectOp::Make(fContext,
1033 ambientColor,
1034 viewMatrix,
Brian Salomon05969092017-07-13 11:20:51 -04001035 ambientRRect,
1036 devSpaceAmbientBlur,
Jim Van Verth39e71652018-04-23 18:08:45 +00001037 devSpaceInsetWidth,
1038 blurClamp);
Brian Salomon05969092017-07-13 11:20:51 -04001039 SkASSERT(op);
1040 this->addDrawOp(clip, std::move(op));
Jim Van Verthc5903412016-11-17 15:27:09 -05001041 }
Jim Van Verth3af1af92017-05-18 15:06:54 -04001042
Jim Van Verthb1b80f72018-01-18 15:19:13 -05001043 if (SkColorGetA(rec.fSpotColor) > 0) {
Jim Van Verth1af03d42017-07-31 09:34:58 -04001044 SkScalar devSpaceSpotBlur;
1045 SkScalar spotScale;
1046 SkVector spotOffset;
1047 SkDrawShadowMetrics::GetSpotParams(occluderHeight, devLightPos.fX, devLightPos.fY,
1048 devLightPos.fZ, rec.fLightRadius,
1049 &devSpaceSpotBlur, &spotScale, &spotOffset);
1050 // handle scale of radius due to CTM
Jim Van Verth3af1af92017-05-18 15:06:54 -04001051 const SkScalar srcSpaceSpotBlur = devSpaceSpotBlur * devToSrcScale;
1052
Jim Van Verth3af1af92017-05-18 15:06:54 -04001053 // Adjust translate for the effect of the scale.
1054 spotOffset.fX += spotScale*viewMatrix[SkMatrix::kMTransX];
1055 spotOffset.fY += spotScale*viewMatrix[SkMatrix::kMTransY];
1056 // This offset is in dev space, need to transform it into source space.
1057 SkMatrix ctmInverse;
1058 if (viewMatrix.invert(&ctmInverse)) {
1059 ctmInverse.mapPoints(&spotOffset, 1);
1060 } else {
1061 // Since the matrix is a similarity, this should never happen, but just in case...
1062 SkDebugf("Matrix is degenerate. Will not render spot shadow correctly!\n");
1063 SkASSERT(false);
1064 }
1065
1066 // Compute the transformed shadow rrect
1067 SkRRect spotShadowRRect;
1068 SkMatrix shadowTransform;
1069 shadowTransform.setScaleTranslate(spotScale, spotScale, spotOffset.fX, spotOffset.fY);
1070 rrect.transform(shadowTransform, &spotShadowRRect);
Mike Reed242135a2018-02-22 13:41:39 -05001071 SkScalar spotRadius = SkRRectPriv::GetSimpleRadii(spotShadowRRect).fX;
Jim Van Verth3af1af92017-05-18 15:06:54 -04001072
1073 // Compute the insetWidth
Jim Van Verth1af03d42017-07-31 09:34:58 -04001074 SkScalar blurOutset = srcSpaceSpotBlur;
Jim Van Verth3af1af92017-05-18 15:06:54 -04001075 SkScalar insetWidth = blurOutset;
1076 if (transparent) {
1077 // If transparent, just do a fill
1078 insetWidth += spotShadowRRect.width();
1079 } else {
1080 // For shadows, instead of using a stroke we specify an inset from the penumbra
1081 // border. We want to extend this inset area so that it meets up with the caster
1082 // geometry. The inset geometry will by default already be inset by the blur width.
1083 //
1084 // We compare the min and max corners inset by the radius between the original
1085 // rrect and the shadow rrect. The distance between the two plus the difference
1086 // between the scaled radius and the original radius gives the distance from the
1087 // transformed shadow shape to the original shape in that corner. The max
1088 // of these gives the maximum distance we need to cover.
1089 //
1090 // Since we are outsetting by 1/2 the blur distance, we just add the maxOffset to
1091 // that to get the full insetWidth.
1092 SkScalar maxOffset;
1093 if (rrect.isRect()) {
1094 // Manhattan distance works better for rects
1095 maxOffset = SkTMax(SkTMax(SkTAbs(spotShadowRRect.rect().fLeft -
1096 rrect.rect().fLeft),
1097 SkTAbs(spotShadowRRect.rect().fTop -
1098 rrect.rect().fTop)),
1099 SkTMax(SkTAbs(spotShadowRRect.rect().fRight -
1100 rrect.rect().fRight),
1101 SkTAbs(spotShadowRRect.rect().fBottom -
1102 rrect.rect().fBottom)));
1103 } else {
Mike Reed242135a2018-02-22 13:41:39 -05001104 SkScalar dr = spotRadius - SkRRectPriv::GetSimpleRadii(rrect).fX;
Jim Van Verth3af1af92017-05-18 15:06:54 -04001105 SkPoint upperLeftOffset = SkPoint::Make(spotShadowRRect.rect().fLeft -
1106 rrect.rect().fLeft + dr,
1107 spotShadowRRect.rect().fTop -
1108 rrect.rect().fTop + dr);
1109 SkPoint lowerRightOffset = SkPoint::Make(spotShadowRRect.rect().fRight -
1110 rrect.rect().fRight - dr,
1111 spotShadowRRect.rect().fBottom -
1112 rrect.rect().fBottom - dr);
Cary Clarkdf429f32017-11-08 11:44:31 -05001113 maxOffset = SkScalarSqrt(SkTMax(SkPointPriv::LengthSqd(upperLeftOffset),
1114 SkPointPriv::LengthSqd(lowerRightOffset))) + dr;
Jim Van Verth3af1af92017-05-18 15:06:54 -04001115 }
Jim Van Verth4c8c1e82018-04-23 17:14:48 -04001116 insetWidth += SkTMax(blurOutset, maxOffset);
Jim Van Verth3af1af92017-05-18 15:06:54 -04001117 }
1118
1119 // Outset the shadow rrect to the border of the penumbra
1120 SkRect outsetRect = spotShadowRRect.rect().makeOutset(blurOutset, blurOutset);
1121 if (spotShadowRRect.isOval()) {
1122 spotShadowRRect = SkRRect::MakeOval(outsetRect);
1123 } else {
1124 SkScalar outsetRad = spotRadius + blurOutset;
1125 spotShadowRRect = SkRRect::MakeRectXY(outsetRect, outsetRad, outsetRad);
1126 }
1127
Jim Van Verthb1b80f72018-01-18 15:19:13 -05001128 GrColor spotColor = SkColorToPremulGrColor(rec.fSpotColor);
Jim Van Verth34d6e4b2017-06-09 11:09:03 -04001129
Robert Phillips7c525e62018-06-12 10:11:12 -04001130 std::unique_ptr<GrDrawOp> op = GrShadowRRectOp::Make(fContext,
1131 spotColor,
1132 viewMatrix,
Brian Salomon05969092017-07-13 11:20:51 -04001133 spotShadowRRect,
Jim Van Verth1af03d42017-07-31 09:34:58 -04001134 2.0f * devSpaceSpotBlur,
Brian Salomon05969092017-07-13 11:20:51 -04001135 insetWidth);
1136 SkASSERT(op);
1137 this->addDrawOp(clip, std::move(op));
Jim Van Verth3af1af92017-05-18 15:06:54 -04001138 }
1139
1140 return true;
Jim Van Verthc5903412016-11-17 15:27:09 -05001141}
1142
1143///////////////////////////////////////////////////////////////////////////////
1144
Brian Osman11052242016-10-27 14:47:55 -04001145bool GrRenderTargetContext::drawFilledDRRect(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -05001146 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001147 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -04001148 const SkMatrix& viewMatrix,
1149 const SkRRect& origOuter,
1150 const SkRRect& origInner) {
robertphillips00095892016-02-29 13:50:40 -08001151 SkASSERT(!origInner.isEmpty());
1152 SkASSERT(!origOuter.isEmpty());
1153
Brian Salomon65749212017-12-01 16:01:47 -05001154 SkTCopyOnFirstWrite<SkRRect> inner(origInner), outer(origOuter);
1155
Brian Salomon45839f92017-12-04 09:02:35 -05001156 GrAAType aaType = this->chooseAAType(aa, GrAllowMixedSamples::kNo);
1157
1158 if (GrAAType::kMSAA == aaType) {
1159 return false;
1160 }
1161
Mike Reed242135a2018-02-22 13:41:39 -05001162 if (GrAAType::kCoverage == aaType && SkRRectPriv::IsCircle(*inner)
1163 && SkRRectPriv::IsCircle(*outer)) {
Brian Salomon65749212017-12-01 16:01:47 -05001164 auto outerR = outer->width() / 2.f;
1165 auto innerR = inner->width() / 2.f;
1166 auto cx = outer->getBounds().fLeft + outerR;
1167 auto cy = outer->getBounds().fTop + outerR;
1168 if (SkScalarNearlyEqual(cx, inner->getBounds().fLeft + innerR) &&
1169 SkScalarNearlyEqual(cy, inner->getBounds().fTop + innerR)) {
1170 auto avgR = (innerR + outerR) / 2.f;
1171 auto circleBounds = SkRect::MakeLTRB(cx - avgR, cy - avgR, cx + avgR, cy + avgR);
1172 SkStrokeRec stroke(SkStrokeRec::kFill_InitStyle);
1173 stroke.setStrokeStyle(outerR - innerR);
Robert Phillips7c525e62018-06-12 10:11:12 -04001174 auto op = GrOvalOpFactory::MakeOvalOp(fContext, std::move(paint), viewMatrix,
1175 circleBounds, GrStyle(stroke, nullptr),
Brian Salomon62e4f3d2018-04-20 13:54:11 -04001176 this->caps()->shaderCaps());
Brian Salomon65749212017-12-01 16:01:47 -05001177 if (op) {
1178 this->addDrawOp(clip, std::move(op));
1179 return true;
1180 }
1181 }
1182 }
1183
Ethan Nicholas0f3c7322017-11-09 14:51:17 -05001184 GrClipEdgeType innerEdgeType, outerEdgeType;
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001185 if (GrAAType::kCoverage == aaType) {
Ethan Nicholas1706f842017-11-10 11:58:19 -05001186 innerEdgeType = GrClipEdgeType::kInverseFillAA;
1187 outerEdgeType = GrClipEdgeType::kFillAA;
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001188 } else {
Ethan Nicholas1706f842017-11-10 11:58:19 -05001189 innerEdgeType = GrClipEdgeType::kInverseFillBW;
1190 outerEdgeType = GrClipEdgeType::kFillBW;
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001191 }
robertphillips00095892016-02-29 13:50:40 -08001192
robertphillips00095892016-02-29 13:50:40 -08001193 SkMatrix inverseVM;
1194 if (!viewMatrix.isIdentity()) {
1195 if (!origInner.transform(viewMatrix, inner.writable())) {
1196 return false;
1197 }
1198 if (!origOuter.transform(viewMatrix, outer.writable())) {
1199 return false;
1200 }
1201 if (!viewMatrix.invert(&inverseVM)) {
1202 return false;
1203 }
1204 } else {
1205 inverseVM.reset();
halcanary9d524f22016-03-29 09:03:52 -07001206 }
robertphillips00095892016-02-29 13:50:40 -08001207
Brian Salomon14471772017-12-05 10:35:15 -05001208 const auto& caps = *this->caps()->shaderCaps();
robertphillips00095892016-02-29 13:50:40 -08001209 // TODO these need to be a geometry processors
Brian Salomon14471772017-12-05 10:35:15 -05001210 auto innerEffect = GrRRectEffect::Make(innerEdgeType, *inner, caps);
robertphillips00095892016-02-29 13:50:40 -08001211 if (!innerEffect) {
1212 return false;
1213 }
1214
Brian Salomon14471772017-12-05 10:35:15 -05001215 auto outerEffect = GrRRectEffect::Make(outerEdgeType, *outer, caps);
robertphillips00095892016-02-29 13:50:40 -08001216 if (!outerEffect) {
1217 return false;
1218 }
1219
Brian Salomon82f44312017-01-11 13:42:54 -05001220 paint.addCoverageFragmentProcessor(std::move(innerEffect));
1221 paint.addCoverageFragmentProcessor(std::move(outerEffect));
robertphillips00095892016-02-29 13:50:40 -08001222
1223 SkRect bounds = outer->getBounds();
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001224 if (GrAAType::kCoverage == aaType) {
robertphillips00095892016-02-29 13:50:40 -08001225 bounds.outset(SK_ScalarHalf, SK_ScalarHalf);
1226 }
halcanary9d524f22016-03-29 09:03:52 -07001227
Brian Salomon82f44312017-01-11 13:42:54 -05001228 this->fillRectWithLocalMatrix(clip, std::move(paint), GrAA::kNo, SkMatrix::I(), bounds,
1229 inverseVM);
robertphillips00095892016-02-29 13:50:40 -08001230 return true;
1231}
1232
Brian Osman11052242016-10-27 14:47:55 -04001233void GrRenderTargetContext::drawDRRect(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -05001234 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001235 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -04001236 const SkMatrix& viewMatrix,
1237 const SkRRect& outer,
1238 const SkRRect& inner) {
robertphillips00095892016-02-29 13:50:40 -08001239 ASSERT_SINGLE_OWNER
1240 RETURN_IF_ABANDONED
1241 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -04001242 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawDRRect", fContext);
robertphillips00095892016-02-29 13:50:40 -08001243
1244 SkASSERT(!outer.isEmpty());
1245 SkASSERT(!inner.isEmpty());
1246
Robert Phillips72152832017-01-25 17:31:35 -05001247 AutoCheckFlush acf(this->drawingManager());
robertphillips00095892016-02-29 13:50:40 -08001248
Brian Salomon82f44312017-01-11 13:42:54 -05001249 if (this->drawFilledDRRect(clip, std::move(paint), aa, viewMatrix, outer, inner)) {
robertphillips00095892016-02-29 13:50:40 -08001250 return;
1251 }
1252
1253 SkPath path;
1254 path.setIsVolatile(true);
1255 path.addRRect(inner);
1256 path.addRRect(outer);
1257 path.setFillType(SkPath::kEvenOdd_FillType);
Brian Salomon2fad74a2017-12-20 13:28:55 -05001258 this->drawShapeUsingPathRenderer(clip, std::move(paint), aa, viewMatrix, GrShape(path));
robertphillips00095892016-02-29 13:50:40 -08001259}
1260
robertphillipsea461502015-05-26 11:38:03 -07001261///////////////////////////////////////////////////////////////////////////////
1262
Brian Osman11052242016-10-27 14:47:55 -04001263void GrRenderTargetContext::drawRegion(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -05001264 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001265 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -04001266 const SkMatrix& viewMatrix,
1267 const SkRegion& region,
Stan Iliev73d8fd92017-08-02 15:36:24 -04001268 const GrStyle& style,
1269 const GrUserStencilSettings* ss) {
msarettcc319b92016-08-25 18:07:18 -07001270 ASSERT_SINGLE_OWNER
1271 RETURN_IF_ABANDONED
1272 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -04001273 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawRegion", fContext);
msarettcc319b92016-08-25 18:07:18 -07001274
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001275 if (GrAA::kYes == aa) {
Brian Salomonfc527d22016-12-14 21:07:01 -05001276 // GrRegionOp performs no antialiasing but is much faster, so here we check the matrix
Brian Salomonc57c7c92016-12-06 14:47:34 -05001277 // to see whether aa is really required.
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001278 if (!SkToBool(viewMatrix.getType() & ~(SkMatrix::kTranslate_Mask)) &&
Brian Salomon34169692017-08-28 15:32:01 -04001279 SkScalarIsInt(viewMatrix.getTranslateX()) &&
1280 SkScalarIsInt(viewMatrix.getTranslateY())) {
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001281 aa = GrAA::kNo;
1282 }
Brian Salomonc57c7c92016-12-06 14:47:34 -05001283 }
msarettcc319b92016-08-25 18:07:18 -07001284 bool complexStyle = !style.isSimpleFill();
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001285 if (complexStyle || GrAA::kYes == aa) {
msarettcc319b92016-08-25 18:07:18 -07001286 SkPath path;
1287 region.getBoundaryPath(&path);
Brian Salomon82f44312017-01-11 13:42:54 -05001288 return this->drawPath(clip, std::move(paint), aa, viewMatrix, path, style);
msarettcc319b92016-08-25 18:07:18 -07001289 }
1290
Brian Salomonf0366322017-07-11 15:53:05 -04001291 GrAAType aaType = this->chooseAAType(GrAA::kNo, GrAllowMixedSamples::kNo);
Robert Phillips7c525e62018-06-12 10:11:12 -04001292 std::unique_ptr<GrDrawOp> op = GrRegionOp::Make(fContext, std::move(paint), viewMatrix, region,
1293 aaType, ss);
Brian Salomonf0366322017-07-11 15:53:05 -04001294 this->addDrawOp(clip, std::move(op));
msarettcc319b92016-08-25 18:07:18 -07001295}
1296
Brian Osman11052242016-10-27 14:47:55 -04001297void GrRenderTargetContext::drawOval(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -05001298 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001299 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -04001300 const SkMatrix& viewMatrix,
1301 const SkRect& oval,
1302 const GrStyle& style) {
joshualitt1de610a2016-01-06 08:26:09 -08001303 ASSERT_SINGLE_OWNER
robertphillipsea461502015-05-26 11:38:03 -07001304 RETURN_IF_ABANDONED
robertphillips2e1e51f2015-10-15 08:01:48 -07001305 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -04001306 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawOval", fContext);
robertphillips2e1e51f2015-10-15 08:01:48 -07001307
Robert Phillips7484d202018-07-03 09:09:08 -04001308 const SkStrokeRec& stroke = style.strokeRec();
1309
Brian Salomon62e4f3d2018-04-20 13:54:11 -04001310 if (oval.isEmpty() && !style.pathEffect()) {
Robert Phillips7484d202018-07-03 09:09:08 -04001311 if (stroke.getStyle() == SkStrokeRec::kFill_Style) {
1312 return;
1313 }
1314
1315 this->drawRect(clip, std::move(paint), aa, viewMatrix, oval, &style);
Brian Salomon62e4f3d2018-04-20 13:54:11 -04001316 return;
robertphillipsea461502015-05-26 11:38:03 -07001317 }
1318
Robert Phillips72152832017-01-25 17:31:35 -05001319 AutoCheckFlush acf(this->drawingManager());
csmartdaltona7f29642016-07-07 08:49:11 -07001320
Brian Salomonea26d6b2018-01-23 20:33:21 +00001321 GrAAType aaType = this->chooseAAType(aa, GrAllowMixedSamples::kNo);
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001322 if (GrAAType::kCoverage == aaType) {
Brian Salomonc7fe0f72018-05-11 10:14:21 -04001323 const GrShaderCaps* shaderCaps = this->caps()->shaderCaps();
Robert Phillips7c525e62018-06-12 10:11:12 -04001324 if (auto op = GrOvalOpFactory::MakeOvalOp(fContext, std::move(paint), viewMatrix, oval,
1325 style, shaderCaps)) {
Brian Salomon05441c42017-05-15 16:45:49 -04001326 this->addDrawOp(clip, std::move(op));
robertphillipsb56f9272016-02-25 11:03:52 -08001327 return;
1328 }
robertphillipsea461502015-05-26 11:38:03 -07001329 }
robertphillipsb56f9272016-02-25 11:03:52 -08001330
Brian Salomon5209d7f2018-04-20 16:52:42 -04001331 this->drawShapeUsingPathRenderer(
1332 clip, std::move(paint), aa, viewMatrix,
1333 GrShape(SkRRect::MakeOval(oval), SkPath::kCW_Direction, 2, false, style));
robertphillipsea461502015-05-26 11:38:03 -07001334}
1335
Brian Osman11052242016-10-27 14:47:55 -04001336void GrRenderTargetContext::drawArc(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -05001337 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001338 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -04001339 const SkMatrix& viewMatrix,
1340 const SkRect& oval,
1341 SkScalar startAngle,
1342 SkScalar sweepAngle,
1343 bool useCenter,
1344 const GrStyle& style) {
Robert Phillipsf1d0ced2017-02-10 09:31:01 -05001345 ASSERT_SINGLE_OWNER
1346 RETURN_IF_ABANDONED
1347 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -04001348 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawArc", fContext);
Robert Phillipsf1d0ced2017-02-10 09:31:01 -05001349
1350 AutoCheckFlush acf(this->drawingManager());
1351
Brian Salomonea26d6b2018-01-23 20:33:21 +00001352 GrAAType aaType = this->chooseAAType(aa, GrAllowMixedSamples::kNo);
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001353 if (GrAAType::kCoverage == aaType) {
Brian Salomonc7fe0f72018-05-11 10:14:21 -04001354 const GrShaderCaps* shaderCaps = this->caps()->shaderCaps();
Robert Phillips7c525e62018-06-12 10:11:12 -04001355 std::unique_ptr<GrDrawOp> op = GrOvalOpFactory::MakeArcOp(fContext,
1356 std::move(paint),
Brian Salomonea26d6b2018-01-23 20:33:21 +00001357 viewMatrix,
1358 oval,
1359 startAngle,
1360 sweepAngle,
1361 useCenter,
1362 style,
1363 shaderCaps);
Brian Salomon42521e82016-12-07 16:44:58 -05001364 if (op) {
Brian Salomon05441c42017-05-15 16:45:49 -04001365 this->addDrawOp(clip, std::move(op));
bsalomon4f3a0ca2016-08-22 13:14:26 -07001366 return;
1367 }
1368 }
Brian Salomone4949402018-04-26 15:22:04 -04001369 this->drawShapeUsingPathRenderer(
1370 clip, std::move(paint), aa, viewMatrix,
1371 GrShape::MakeArc(oval, startAngle, sweepAngle, useCenter, style));
bsalomon4f3a0ca2016-08-22 13:14:26 -07001372}
1373
Brian Osman11052242016-10-27 14:47:55 -04001374void GrRenderTargetContext::drawImageLattice(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -05001375 GrPaint&& paint,
Brian Osman11052242016-10-27 14:47:55 -04001376 const SkMatrix& viewMatrix,
Brian Salomon2a943df2018-05-04 13:43:19 -04001377 sk_sp<GrTextureProxy> image,
1378 sk_sp<GrColorSpaceXform> csxf,
1379 GrSamplerState::Filter filter,
Brian Osman11052242016-10-27 14:47:55 -04001380 std::unique_ptr<SkLatticeIter> iter,
1381 const SkRect& dst) {
joshualitt1de610a2016-01-06 08:26:09 -08001382 ASSERT_SINGLE_OWNER
joshualitt33a5fce2015-11-18 13:28:51 -08001383 RETURN_IF_ABANDONED
1384 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -04001385 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawImageLattice", fContext);
joshualitt33a5fce2015-11-18 13:28:51 -08001386
Robert Phillips72152832017-01-25 17:31:35 -05001387 AutoCheckFlush acf(this->drawingManager());
joshualitt33a5fce2015-11-18 13:28:51 -08001388
Brian Salomon2a943df2018-05-04 13:43:19 -04001389 std::unique_ptr<GrDrawOp> op =
Robert Phillips7c525e62018-06-12 10:11:12 -04001390 GrLatticeOp::MakeNonAA(fContext, std::move(paint), viewMatrix, std::move(image),
1391 std::move(csxf), filter, std::move(iter), dst);
Brian Salomon815486c2017-07-11 08:52:13 -04001392 this->addDrawOp(clip, std::move(op));
joshualitt33a5fce2015-11-18 13:28:51 -08001393}
1394
Greg Daniel51316782017-08-02 15:10:09 +00001395GrSemaphoresSubmitted GrRenderTargetContext::prepareForExternalIO(
1396 int numSemaphores, GrBackendSemaphore backendSemaphores[]) {
robertphillips8c523e02016-07-26 07:41:00 -07001397 ASSERT_SINGLE_OWNER
Greg Daniel51316782017-08-02 15:10:09 +00001398 if (this->drawingManager()->wasAbandoned()) { return GrSemaphoresSubmitted::kNo; }
robertphillips8c523e02016-07-26 07:41:00 -07001399 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -04001400 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "prepareForExternalIO", fContext);
robertphillips8c523e02016-07-26 07:41:00 -07001401
Greg Daniel51316782017-08-02 15:10:09 +00001402 return this->drawingManager()->prepareSurfaceForExternalIO(fRenderTargetProxy.get(),
1403 numSemaphores,
1404 backendSemaphores);
Greg Daniela5cb7812017-06-16 09:45:32 -04001405}
1406
Greg Danielc64ee462017-06-15 16:59:49 -04001407bool GrRenderTargetContext::waitOnSemaphores(int numSemaphores,
Greg Daniela5cb7812017-06-16 09:45:32 -04001408 const GrBackendSemaphore* waitSemaphores) {
1409 ASSERT_SINGLE_OWNER
Greg Danielc64ee462017-06-15 16:59:49 -04001410 RETURN_FALSE_IF_ABANDONED
Greg Daniela5cb7812017-06-16 09:45:32 -04001411 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -04001412 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "waitOnSemaphores", fContext);
Greg Daniela5cb7812017-06-16 09:45:32 -04001413
1414 AutoCheckFlush acf(this->drawingManager());
1415
Greg Danielc64ee462017-06-15 16:59:49 -04001416 if (numSemaphores && !this->caps()->fenceSyncSupport()) {
1417 return false;
1418 }
1419
Robert Phillips6be756b2018-01-16 15:07:54 -05001420 auto resourceProvider = fContext->contextPriv().resourceProvider();
1421
Greg Daniela5cb7812017-06-16 09:45:32 -04001422 SkTArray<sk_sp<GrSemaphore>> semaphores(numSemaphores);
1423 for (int i = 0; i < numSemaphores; ++i) {
Robert Phillips6be756b2018-01-16 15:07:54 -05001424 sk_sp<GrSemaphore> sema = resourceProvider->wrapBackendSemaphore(
Greg Daniel17b7c052018-01-09 13:55:33 -05001425 waitSemaphores[i], GrResourceProvider::SemaphoreWrapType::kWillWait,
1426 kAdopt_GrWrapOwnership);
Robert Phillips7c525e62018-06-12 10:11:12 -04001427 std::unique_ptr<GrOp> waitOp(GrSemaphoreOp::MakeWait(fContext, sema,
1428 fRenderTargetProxy.get()));
Robert Phillips2de8cfa2017-06-28 10:33:41 -04001429 this->getRTOpList()->addOp(std::move(waitOp), *this->caps());
Greg Daniela5cb7812017-06-16 09:45:32 -04001430 }
Greg Danielc64ee462017-06-15 16:59:49 -04001431 return true;
robertphillips8c523e02016-07-26 07:41:00 -07001432}
joshualitt33a5fce2015-11-18 13:28:51 -08001433
Robert Phillips65a88fa2017-08-08 08:36:22 -04001434void GrRenderTargetContext::insertEventMarker(const SkString& str) {
Robert Phillips88a32ef2018-06-07 11:05:56 -04001435 std::unique_ptr<GrOp> op(GrDebugMarkerOp::Make(fContext, fRenderTargetProxy.get(), str));
Robert Phillips65a88fa2017-08-08 08:36:22 -04001436 this->getRTOpList()->addOp(std::move(op), *this->caps());
1437}
1438
1439
robertphillipsea461502015-05-26 11:38:03 -07001440// Can 'path' be drawn as a pair of filled nested rectangles?
bsalomon6663acf2016-05-10 09:14:17 -07001441static bool fills_as_nested_rects(const SkMatrix& viewMatrix, const SkPath& path, SkRect rects[2]) {
robertphillipsea461502015-05-26 11:38:03 -07001442
1443 if (path.isInverseFillType()) {
1444 return false;
1445 }
1446
1447 // TODO: this restriction could be lifted if we were willing to apply
1448 // the matrix to all the points individually rather than just to the rect
robertphillips0e7029e2015-11-30 05:45:06 -08001449 if (!viewMatrix.rectStaysRect()) {
robertphillipsea461502015-05-26 11:38:03 -07001450 return false;
1451 }
1452
1453 SkPath::Direction dirs[2];
1454 if (!path.isNestedFillRects(rects, dirs)) {
1455 return false;
1456 }
1457
1458 if (SkPath::kWinding_FillType == path.getFillType() && dirs[0] == dirs[1]) {
1459 // The two rects need to be wound opposite to each other
1460 return false;
1461 }
1462
1463 // Right now, nested rects where the margin is not the same width
1464 // all around do not render correctly
1465 const SkScalar* outer = rects[0].asScalars();
1466 const SkScalar* inner = rects[1].asScalars();
1467
1468 bool allEq = true;
1469
1470 SkScalar margin = SkScalarAbs(outer[0] - inner[0]);
1471 bool allGoE1 = margin >= SK_Scalar1;
1472
1473 for (int i = 1; i < 4; ++i) {
1474 SkScalar temp = SkScalarAbs(outer[i] - inner[i]);
1475 if (temp < SK_Scalar1) {
1476 allGoE1 = false;
1477 }
1478 if (!SkScalarNearlyEqual(margin, temp)) {
1479 allEq = false;
1480 }
1481 }
1482
1483 return allEq || allGoE1;
1484}
1485
Brian Osman11052242016-10-27 14:47:55 -04001486void GrRenderTargetContext::drawPath(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -05001487 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001488 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -04001489 const SkMatrix& viewMatrix,
Brian Salomon40b77a62017-12-22 11:25:52 -05001490 const SkPath& path,
Brian Osman11052242016-10-27 14:47:55 -04001491 const GrStyle& style) {
joshualitt1de610a2016-01-06 08:26:09 -08001492 ASSERT_SINGLE_OWNER
robertphillipsea461502015-05-26 11:38:03 -07001493 RETURN_IF_ABANDONED
robertphillips2e1e51f2015-10-15 08:01:48 -07001494 SkDEBUGCODE(this->validate();)
Robert Phillips20390c32018-08-17 11:01:03 -04001495 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawPath", fContext);
1496
1497 GrAAType aaType = this->chooseAAType(aa, GrAllowMixedSamples::kNo);
1498 if (GrAAType::kCoverage == aaType) {
1499 // TODO: Make GrShape check for nested rects.
1500 SkRect rects[2];
1501 if (style.isSimpleFill() && fills_as_nested_rects(viewMatrix, path, rects)) {
1502 // Concave AA paths are expensive - try to avoid them for special cases
Robert Phillips27927a52018-08-20 13:18:12 -04001503 std::unique_ptr<GrDrawOp> op = GrRectOpFactory::MakeAAFillNestedRects(
1504 fContext, std::move(paint), viewMatrix, rects);
1505 if (op) {
1506 this->addDrawOp(clip, std::move(op));
Robert Phillips20390c32018-08-17 11:01:03 -04001507 }
Robert Phillips27927a52018-08-20 13:18:12 -04001508 // Returning here indicates that there is nothing to draw in this case.
1509 return;
Robert Phillips20390c32018-08-17 11:01:03 -04001510 }
1511 }
Brian Salomon40b77a62017-12-22 11:25:52 -05001512
1513 GrShape shape(path, style);
Robert Phillips20390c32018-08-17 11:01:03 -04001514
Robert Phillips27927a52018-08-20 13:18:12 -04001515 this->drawShape(clip, std::move(paint), aa, viewMatrix, shape);
Robert Phillips20390c32018-08-17 11:01:03 -04001516}
1517
1518void GrRenderTargetContext::drawShape(const GrClip& clip,
1519 GrPaint&& paint,
1520 GrAA aa,
1521 const SkMatrix& viewMatrix,
1522 const GrShape& shape) {
1523 ASSERT_SINGLE_OWNER
1524 RETURN_IF_ABANDONED
1525 SkDEBUGCODE(this->validate();)
1526 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawShape", fContext);
1527
Brian Salomon2fad74a2017-12-20 13:28:55 -05001528 if (shape.isEmpty()) {
1529 if (shape.inverseFilled()) {
1530 this->drawPaint(clip, std::move(paint), viewMatrix);
1531 }
1532 return;
robertphillipsea461502015-05-26 11:38:03 -07001533 }
1534
Robert Phillips72152832017-01-25 17:31:35 -05001535 AutoCheckFlush acf(this->drawingManager());
robertphillipsea461502015-05-26 11:38:03 -07001536
Brian Salomon2fad74a2017-12-20 13:28:55 -05001537 if (!shape.style().hasPathEffect()) {
1538 SkRRect rrect;
1539 // We can ignore the starting point and direction since there is no path effect.
1540 bool inverted;
1541 if (shape.asRRect(&rrect, nullptr, nullptr, &inverted) && !inverted) {
1542 if (rrect.isRect()) {
1543 this->drawRect(clip, std::move(paint), aa, viewMatrix, rrect.rect(),
1544 &shape.style());
1545 return;
1546 } else if (rrect.isOval()) {
1547 this->drawOval(clip, std::move(paint), aa, viewMatrix, rrect.rect(), shape.style());
robertphillipsea461502015-05-26 11:38:03 -07001548 return;
1549 }
Brian Salomon2fad74a2017-12-20 13:28:55 -05001550 this->drawRRect(clip, std::move(paint), aa, viewMatrix, rrect, shape.style());
1551 return;
robertphillipsea461502015-05-26 11:38:03 -07001552 }
1553 }
robertphillips4bc31812016-03-01 12:22:49 -08001554
Brian Salomon2fad74a2017-12-20 13:28:55 -05001555 this->drawShapeUsingPathRenderer(clip, std::move(paint), aa, viewMatrix, shape);
robertphillipsea461502015-05-26 11:38:03 -07001556}
1557
Chris Daltonbbfd5162017-11-07 13:35:22 -07001558bool GrRenderTargetContextPriv::drawAndStencilPath(const GrHardClip& clip,
Brian Osman11052242016-10-27 14:47:55 -04001559 const GrUserStencilSettings* ss,
1560 SkRegion::Op op,
1561 bool invert,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001562 GrAA aa,
Brian Osman11052242016-10-27 14:47:55 -04001563 const SkMatrix& viewMatrix,
1564 const SkPath& path) {
robertphillips391395d2016-03-02 09:26:36 -08001565 ASSERT_SINGLE_OWNER_PRIV
1566 RETURN_FALSE_IF_ABANDONED_PRIV
Brian Osman11052242016-10-27 14:47:55 -04001567 SkDEBUGCODE(fRenderTargetContext->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -04001568 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContextPriv", "drawAndStencilPath",
1569 fRenderTargetContext->fContext);
robertphillips391395d2016-03-02 09:26:36 -08001570
1571 if (path.isEmpty() && path.isInverseFillType()) {
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001572 this->drawAndStencilRect(clip, ss, op, invert, GrAA::kNo, SkMatrix::I(),
Brian Osman11052242016-10-27 14:47:55 -04001573 SkRect::MakeIWH(fRenderTargetContext->width(),
1574 fRenderTargetContext->height()));
robertphillips391395d2016-03-02 09:26:36 -08001575 return true;
1576 }
1577
Robert Phillips72152832017-01-25 17:31:35 -05001578 AutoCheckFlush acf(fRenderTargetContext->drawingManager());
robertphillips391395d2016-03-02 09:26:36 -08001579
1580 // An Assumption here is that path renderer would use some form of tweaking
1581 // the src color (either the input alpha or in the frag shader) to implement
1582 // aa. If we have some future driver-mojo path AA that can do the right
1583 // thing WRT to the blend then we'll need some query on the PR.
Brian Salomon7c8460e2017-05-12 11:36:10 -04001584 GrAAType aaType = fRenderTargetContext->chooseAAType(aa, GrAllowMixedSamples::kNo);
robertphillips976f5f02016-06-03 10:59:20 -07001585 bool hasUserStencilSettings = !ss->isUnused();
robertphillips391395d2016-03-02 09:26:36 -08001586
Chris Daltondb91c6e2017-09-08 16:25:08 -06001587 SkIRect clipConservativeBounds;
1588 clip.getConservativeBounds(fRenderTargetContext->width(), fRenderTargetContext->height(),
1589 &clipConservativeBounds, nullptr);
1590
bsalomon8acedde2016-06-24 10:42:16 -07001591 GrShape shape(path, GrStyle::SimpleFill());
robertphillips391395d2016-03-02 09:26:36 -08001592 GrPathRenderer::CanDrawPathArgs canDrawArgs;
Brian Salomonc7fe0f72018-05-11 10:14:21 -04001593 canDrawArgs.fCaps = fRenderTargetContext->caps();
robertphillips391395d2016-03-02 09:26:36 -08001594 canDrawArgs.fViewMatrix = &viewMatrix;
bsalomon8acedde2016-06-24 10:42:16 -07001595 canDrawArgs.fShape = &shape;
Chris Daltondb91c6e2017-09-08 16:25:08 -06001596 canDrawArgs.fClipConservativeBounds = &clipConservativeBounds;
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001597 canDrawArgs.fAAType = aaType;
cdalton93a379b2016-05-11 13:58:08 -07001598 canDrawArgs.fHasUserStencilSettings = hasUserStencilSettings;
robertphillips391395d2016-03-02 09:26:36 -08001599
1600 // Don't allow the SW renderer
Robert Phillips72152832017-01-25 17:31:35 -05001601 GrPathRenderer* pr = fRenderTargetContext->drawingManager()->getPathRenderer(
Brian Salomon36aa1762016-12-10 13:24:02 -05001602 canDrawArgs, false, GrPathRendererChain::DrawType::kStencilAndColor);
robertphillips391395d2016-03-02 09:26:36 -08001603 if (!pr) {
1604 return false;
1605 }
1606
1607 GrPaint paint;
1608 paint.setCoverageSetOpXPFactory(op, invert);
1609
Brian Salomonf3569f02017-10-24 12:52:33 -04001610 GrPathRenderer::DrawPathArgs args{fRenderTargetContext->drawingManager()->getContext(),
1611 std::move(paint),
1612 ss,
1613 fRenderTargetContext,
1614 &clip,
1615 &clipConservativeBounds,
1616 &viewMatrix,
1617 &shape,
1618 aaType,
Brian Osman34ec3742018-07-03 10:40:57 -04001619 fRenderTargetContext->colorSpaceInfo().isLinearlyBlended()};
robertphillips391395d2016-03-02 09:26:36 -08001620 pr->drawPath(args);
1621 return true;
1622}
1623
Brian Osman11052242016-10-27 14:47:55 -04001624SkBudgeted GrRenderTargetContextPriv::isBudgeted() const {
robertphillips714712b2016-08-04 06:20:45 -07001625 ASSERT_SINGLE_OWNER_PRIV
1626
Brian Osman11052242016-10-27 14:47:55 -04001627 if (fRenderTargetContext->wasAbandoned()) {
robertphillips714712b2016-08-04 06:20:45 -07001628 return SkBudgeted::kNo;
1629 }
1630
Brian Osman11052242016-10-27 14:47:55 -04001631 SkDEBUGCODE(fRenderTargetContext->validate();)
robertphillips714712b2016-08-04 06:20:45 -07001632
Robert Phillipsc7635fa2016-10-28 13:25:24 -04001633 return fRenderTargetContext->fRenderTargetProxy->isBudgeted();
robertphillips714712b2016-08-04 06:20:45 -07001634}
1635
Brian Salomon2fad74a2017-12-20 13:28:55 -05001636void GrRenderTargetContext::drawShapeUsingPathRenderer(const GrClip& clip,
1637 GrPaint&& paint,
1638 GrAA aa,
1639 const SkMatrix& viewMatrix,
1640 const GrShape& originalShape) {
joshualitt1de610a2016-01-06 08:26:09 -08001641 ASSERT_SINGLE_OWNER
robertphillipsea461502015-05-26 11:38:03 -07001642 RETURN_IF_ABANDONED
Brian Salomondcbb9d92017-07-19 10:53:20 -04001643 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "internalDrawPath", fContext);
1644
Chris Daltondb91c6e2017-09-08 16:25:08 -06001645 SkIRect clipConservativeBounds;
1646 clip.getConservativeBounds(this->width(), this->height(), &clipConservativeBounds, nullptr);
1647
Brian Salomon2fad74a2017-12-20 13:28:55 -05001648 GrShape tempShape;
Brian Salomon7c8460e2017-05-12 11:36:10 -04001649 // NVPR cannot handle hairlines, so this would get picked up by a different stencil and
1650 // cover path renderer (i.e. default path renderer). The hairline renderer produces much
1651 // smoother hairlines than MSAA.
Brian Salomon2fad74a2017-12-20 13:28:55 -05001652 GrAllowMixedSamples allowMixedSamples = originalShape.style().isSimpleHairline()
1653 ? GrAllowMixedSamples::kNo
1654 : GrAllowMixedSamples::kYes;
Brian Salomon7c8460e2017-05-12 11:36:10 -04001655 GrAAType aaType = this->chooseAAType(aa, allowMixedSamples);
robertphillips68737822015-10-29 12:12:21 -07001656 GrPathRenderer::CanDrawPathArgs canDrawArgs;
Brian Salomonc7fe0f72018-05-11 10:14:21 -04001657 canDrawArgs.fCaps = this->caps();
robertphillips68737822015-10-29 12:12:21 -07001658 canDrawArgs.fViewMatrix = &viewMatrix;
Brian Salomon2fad74a2017-12-20 13:28:55 -05001659 canDrawArgs.fShape = &originalShape;
Chris Daltondb91c6e2017-09-08 16:25:08 -06001660 canDrawArgs.fClipConservativeBounds = &clipConservativeBounds;
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001661 canDrawArgs.fHasUserStencilSettings = false;
robertphillips68737822015-10-29 12:12:21 -07001662
Brian Salomon0e8fc8b2016-12-09 15:10:07 -05001663 GrPathRenderer* pr;
Brian Salomon82125e92016-12-10 09:35:48 -05001664 static constexpr GrPathRendererChain::DrawType kType = GrPathRendererChain::DrawType::kColor;
Brian Salomon2fad74a2017-12-20 13:28:55 -05001665 if (originalShape.isEmpty() && !originalShape.inverseFilled()) {
Brian Salomon1e5d0ca2017-12-14 10:50:19 -05001666 return;
1667 }
1668
1669 canDrawArgs.fAAType = aaType;
1670
1671 // Try a 1st time without applying any of the style to the geometry (and barring sw)
1672 pr = this->drawingManager()->getPathRenderer(canDrawArgs, false, kType);
1673 SkScalar styleScale = GrStyle::MatrixToScaleFactor(viewMatrix);
1674
Brian Salomon2fad74a2017-12-20 13:28:55 -05001675 if (!pr && originalShape.style().pathEffect()) {
Brian Salomon1e5d0ca2017-12-14 10:50:19 -05001676 // It didn't work above, so try again with the path effect applied.
Brian Salomon2fad74a2017-12-20 13:28:55 -05001677 tempShape = originalShape.applyStyle(GrStyle::Apply::kPathEffectOnly, styleScale);
1678 if (tempShape.isEmpty()) {
robertphillipsea461502015-05-26 11:38:03 -07001679 return;
1680 }
Brian Salomon2fad74a2017-12-20 13:28:55 -05001681 canDrawArgs.fShape = &tempShape;
Robert Phillips72152832017-01-25 17:31:35 -05001682 pr = this->drawingManager()->getPathRenderer(canDrawArgs, false, kType);
Brian Salomon1e5d0ca2017-12-14 10:50:19 -05001683 }
1684 if (!pr) {
Brian Salomon2fad74a2017-12-20 13:28:55 -05001685 if (canDrawArgs.fShape->style().applies()) {
1686 tempShape = canDrawArgs.fShape->applyStyle(GrStyle::Apply::kPathEffectAndStrokeRec,
1687 styleScale);
1688 if (tempShape.isEmpty()) {
robertphillipsea461502015-05-26 11:38:03 -07001689 return;
1690 }
Brian Salomon2fad74a2017-12-20 13:28:55 -05001691 canDrawArgs.fShape = &tempShape;
Brian Salomone7df0bb2018-05-07 14:44:57 -04001692 // This time, allow SW renderer
1693 pr = this->drawingManager()->getPathRenderer(canDrawArgs, true, kType);
1694 } else {
1695 pr = this->drawingManager()->getSoftwarePathRenderer();
bsalomon6663acf2016-05-10 09:14:17 -07001696 }
Brian Salomon1e5d0ca2017-12-14 10:50:19 -05001697 }
robertphillipsea461502015-05-26 11:38:03 -07001698
bsalomon8acedde2016-06-24 10:42:16 -07001699 if (!pr) {
robertphillipsea461502015-05-26 11:38:03 -07001700#ifdef SK_DEBUG
1701 SkDebugf("Unable to find path renderer compatible with path.\n");
1702#endif
1703 return;
1704 }
1705
Robert Phillips256c37b2017-03-01 14:32:46 -05001706 GrPathRenderer::DrawPathArgs args{this->drawingManager()->getContext(),
Brian Salomon82f44312017-01-11 13:42:54 -05001707 std::move(paint),
1708 &GrUserStencilSettings::kUnused,
1709 this,
1710 &clip,
Chris Daltondb91c6e2017-09-08 16:25:08 -06001711 &clipConservativeBounds,
Brian Salomon82f44312017-01-11 13:42:54 -05001712 &viewMatrix,
Brian Salomon2fad74a2017-12-20 13:28:55 -05001713 canDrawArgs.fShape,
Brian Salomon82f44312017-01-11 13:42:54 -05001714 aaType,
Brian Osman34ec3742018-07-03 10:40:57 -04001715 this->colorSpaceInfo().isLinearlyBlended()};
bsalomon0aff2fa2015-07-31 06:48:27 -07001716 pr->drawPath(args);
robertphillipsea461502015-05-26 11:38:03 -07001717}
1718
Brian Salomon467921e2017-03-06 16:17:12 -05001719static void op_bounds(SkRect* bounds, const GrOp* op) {
1720 *bounds = op->bounds();
1721 if (op->hasZeroArea()) {
1722 if (op->hasAABloat()) {
1723 bounds->outset(0.5f, 0.5f);
1724 } else {
1725 // We don't know which way the particular GPU will snap lines or points at integer
1726 // coords. So we ensure that the bounds is large enough for either snap.
1727 SkRect before = *bounds;
1728 bounds->roundOut(bounds);
1729 if (bounds->fLeft == before.fLeft) {
1730 bounds->fLeft -= 1;
1731 }
1732 if (bounds->fTop == before.fTop) {
1733 bounds->fTop -= 1;
1734 }
1735 if (bounds->fRight == before.fRight) {
1736 bounds->fRight += 1;
1737 }
1738 if (bounds->fBottom == before.fBottom) {
1739 bounds->fBottom += 1;
1740 }
1741 }
1742 }
1743}
1744
Brian Salomon54d212e2017-03-21 14:22:38 -04001745uint32_t GrRenderTargetContext::addDrawOp(const GrClip& clip, std::unique_ptr<GrDrawOp> op) {
joshualitt1de610a2016-01-06 08:26:09 -08001746 ASSERT_SINGLE_OWNER
Robert Phillipsc0138922017-03-08 11:50:55 -05001747 if (this->drawingManager()->wasAbandoned()) {
Robert Phillipsc994a932018-06-19 13:09:54 -04001748 fContext->contextPriv().opMemoryPool()->release(std::move(op));
Robert Phillipsc0138922017-03-08 11:50:55 -05001749 return SK_InvalidUniqueID;
1750 }
robertphillips2e1e51f2015-10-15 08:01:48 -07001751 SkDEBUGCODE(this->validate();)
Brian Salomondcbb9d92017-07-19 10:53:20 -04001752 GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "addDrawOp", fContext);
robertphillips2d70dcb2015-10-06 07:38:23 -07001753
Brian Salomon467921e2017-03-06 16:17:12 -05001754 // Setup clip
1755 SkRect bounds;
1756 op_bounds(&bounds, op.get());
Brian Salomon97180af2017-03-14 13:42:58 -04001757 GrAppliedClip appliedClip;
Brian Salomon54d212e2017-03-21 14:22:38 -04001758 GrDrawOp::FixedFunctionFlags fixedFunctionFlags = op->fixedFunctionFlags();
1759 if (!clip.apply(fContext, this, fixedFunctionFlags & GrDrawOp::FixedFunctionFlags::kUsesHWAA,
1760 fixedFunctionFlags & GrDrawOp::FixedFunctionFlags::kUsesStencil, &appliedClip,
1761 &bounds)) {
Robert Phillipsc994a932018-06-19 13:09:54 -04001762 fContext->contextPriv().opMemoryPool()->release(std::move(op));
Brian Salomon54d212e2017-03-21 14:22:38 -04001763 return SK_InvalidUniqueID;
1764 }
1765
Brian Salomon54d212e2017-03-21 14:22:38 -04001766 if (fixedFunctionFlags & GrDrawOp::FixedFunctionFlags::kUsesStencil ||
1767 appliedClip.hasStencilClip()) {
Robert Phillips6b47c7d2017-08-29 07:24:09 -04001768 this->getOpList()->setStencilLoadOp(GrLoadOp::kClear);
Robert Phillips95214472017-08-08 18:00:03 -04001769
Robert Phillips65048132017-08-10 08:44:49 -04001770 this->setNeedsStencil();
Brian Salomon54d212e2017-03-21 14:22:38 -04001771 }
1772
Robert Phillipsbb581ce2017-05-29 15:05:15 -04001773 GrXferProcessor::DstProxy dstProxy;
Brian Osman532b3f92018-07-11 10:02:07 -04001774 if (GrDrawOp::RequiresDstTexture::kYes == op->finalize(*this->caps(), &appliedClip)) {
Robert Phillipsbb581ce2017-05-29 15:05:15 -04001775 if (!this->setupDstProxy(this->asRenderTargetProxy(), clip, op->bounds(), &dstProxy)) {
Robert Phillipsc994a932018-06-19 13:09:54 -04001776 fContext->contextPriv().opMemoryPool()->release(std::move(op));
Brian Salomon54d212e2017-03-21 14:22:38 -04001777 return SK_InvalidUniqueID;
1778 }
1779 }
1780
1781 op->setClippedBounds(bounds);
Robert Phillips2de8cfa2017-06-28 10:33:41 -04001782 return this->getRTOpList()->addOp(std::move(op), *this->caps(),
1783 std::move(appliedClip), dstProxy);
Brian Salomon54d212e2017-03-21 14:22:38 -04001784}
1785
Robert Phillipsbb581ce2017-05-29 15:05:15 -04001786bool GrRenderTargetContext::setupDstProxy(GrRenderTargetProxy* rtProxy, const GrClip& clip,
Robert Phillips16d8ec62017-07-27 16:16:25 -04001787 const SkRect& opBounds,
1788 GrXferProcessor::DstProxy* dstProxy) {
Brian Salomon467921e2017-03-06 16:17:12 -05001789 if (this->caps()->textureBarrierSupport()) {
Robert Phillipsbf25d432017-04-07 10:08:53 -04001790 if (GrTextureProxy* texProxy = rtProxy->asTextureProxy()) {
Brian Salomon467921e2017-03-06 16:17:12 -05001791 // The render target is a texture, so we can read from it directly in the shader. The XP
1792 // will be responsible to detect this situation and request a texture barrier.
Robert Phillipsbb581ce2017-05-29 15:05:15 -04001793 dstProxy->setProxy(sk_ref_sp(texProxy));
1794 dstProxy->setOffset(0, 0);
Robert Phillipsbf25d432017-04-07 10:08:53 -04001795 return true;
Brian Salomon467921e2017-03-06 16:17:12 -05001796 }
1797 }
1798
Robert Phillipsbf25d432017-04-07 10:08:53 -04001799 SkIRect copyRect = SkIRect::MakeWH(rtProxy->width(), rtProxy->height());
Brian Salomon467921e2017-03-06 16:17:12 -05001800
Eric Karl74480882017-04-03 14:49:05 -07001801 SkIRect clippedRect;
Robert Phillipsbf25d432017-04-07 10:08:53 -04001802 clip.getConservativeBounds(rtProxy->width(), rtProxy->height(), &clippedRect);
Eric Karl72e551e2017-04-04 13:42:10 -07001803 SkIRect drawIBounds;
Brian Salomon467921e2017-03-06 16:17:12 -05001804 opBounds.roundOut(&drawIBounds);
Brian Salomon859621f2017-03-16 09:21:54 -04001805 // Cover up for any precision issues by outsetting the op bounds a pixel in each direction.
1806 drawIBounds.outset(1, 1);
Eric Karl72e551e2017-04-04 13:42:10 -07001807 if (!clippedRect.intersect(drawIBounds)) {
Brian Salomon467921e2017-03-06 16:17:12 -05001808#ifdef SK_DEBUG
Robert Phillipsbf25d432017-04-07 10:08:53 -04001809 GrCapsDebugf(this->caps(), "setupDstTexture: Missed an early reject bailing on draw.");
Brian Salomon467921e2017-03-06 16:17:12 -05001810#endif
Robert Phillipsbf25d432017-04-07 10:08:53 -04001811 return false;
Brian Salomon467921e2017-03-06 16:17:12 -05001812 }
1813
1814 // MSAA consideration: When there is support for reading MSAA samples in the shader we could
1815 // have per-sample dst values by making the copy multisampled.
1816 GrSurfaceDesc desc;
Eric Karl74480882017-04-03 14:49:05 -07001817 bool rectsMustMatch = false;
1818 bool disallowSubrect = false;
Brian Salomon2a4f9832018-03-03 22:43:43 -05001819 GrSurfaceOrigin origin;
1820 if (!this->caps()->initDescForDstCopy(rtProxy, &desc, &origin, &rectsMustMatch,
1821 &disallowSubrect)) {
Brian Salomon467921e2017-03-06 16:17:12 -05001822 desc.fFlags = kRenderTarget_GrSurfaceFlag;
Robert Phillipsbf25d432017-04-07 10:08:53 -04001823 desc.fConfig = rtProxy->config();
Greg Daniel1efe3222018-04-04 14:02:51 -04001824 origin = rtProxy->origin();
Brian Salomon467921e2017-03-06 16:17:12 -05001825 }
1826
Eric Karl74480882017-04-03 14:49:05 -07001827 if (!disallowSubrect) {
1828 copyRect = clippedRect;
1829 }
Brian Salomon467921e2017-03-06 16:17:12 -05001830
Robert Phillipsbf25d432017-04-07 10:08:53 -04001831 SkIPoint dstPoint, dstOffset;
1832 SkBackingFit fit;
Eric Karl74480882017-04-03 14:49:05 -07001833 if (rectsMustMatch) {
Robert Phillipsbf25d432017-04-07 10:08:53 -04001834 desc.fWidth = rtProxy->width();
1835 desc.fHeight = rtProxy->height();
Eric Karl74480882017-04-03 14:49:05 -07001836 dstPoint = {copyRect.fLeft, copyRect.fTop};
1837 dstOffset = {0, 0};
Robert Phillipsbf25d432017-04-07 10:08:53 -04001838 fit = SkBackingFit::kExact;
Eric Karl74480882017-04-03 14:49:05 -07001839 } else {
1840 desc.fWidth = copyRect.width();
1841 desc.fHeight = copyRect.height();
1842 dstPoint = {0, 0};
1843 dstOffset = {copyRect.fLeft, copyRect.fTop};
Robert Phillipsbf25d432017-04-07 10:08:53 -04001844 fit = SkBackingFit::kApprox;
Eric Karl74480882017-04-03 14:49:05 -07001845 }
Brian Salomon467921e2017-03-06 16:17:12 -05001846
Robert Phillipsbf25d432017-04-07 10:08:53 -04001847 sk_sp<GrSurfaceContext> sContext = fContext->contextPriv().makeDeferredSurfaceContext(
Brian Salomon2a4f9832018-03-03 22:43:43 -05001848 desc, origin, GrMipMapped::kNo, fit, SkBudgeted::kYes,
Brian Salomonf802e752018-02-13 17:13:31 -05001849 sk_ref_sp(this->colorSpaceInfo().colorSpace()));
Robert Phillipsbf25d432017-04-07 10:08:53 -04001850 if (!sContext) {
1851 SkDebugf("setupDstTexture: surfaceContext creation failed.\n");
1852 return false;
1853 }
1854
1855 if (!sContext->copy(rtProxy, copyRect, dstPoint)) {
1856 SkDebugf("setupDstTexture: copy failed.\n");
1857 return false;
1858 }
1859
Robert Phillipsbb581ce2017-05-29 15:05:15 -04001860 dstProxy->setProxy(sContext->asTextureProxyRef());
1861 dstProxy->setOffset(dstOffset);
Robert Phillipsbf25d432017-04-07 10:08:53 -04001862 return true;
robertphillips2334fb62015-06-17 05:43:33 -07001863}