blob: b049a8b0f9e8b66c4df9c15ac0c97565f0a1c56e [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001/*
2 * Copyright 2011 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 */
bsalomon@google.com30085192011-08-19 15:42:31 +00007
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "src/core/SkDrawProcs.h"
9#include "src/gpu/GrCaps.h"
10#include "src/gpu/GrPaint.h"
11#include "src/gpu/GrPathRenderer.h"
12#include "src/gpu/GrRecordingContextPriv.h"
13#include "src/gpu/GrRenderTargetContext.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050014#include "src/gpu/GrUserStencilSettings.h"
Michael Ludwig2686d692020-04-17 20:21:37 +000015#include "src/gpu/geometry/GrStyledShape.h"
bsalomon@google.comffca4002011-02-22 20:34:01 +000016
Brian Salomon653f42f2018-07-10 10:07:31 -040017#ifdef SK_DEBUG
18void GrPathRenderer::StencilPathArgs::validate() const {
19 SkASSERT(fContext);
20 SkASSERT(fRenderTargetContext);
21 SkASSERT(fClipConservativeBounds);
22 SkASSERT(fViewMatrix);
23 SkASSERT(fShape);
24 SkASSERT(fShape->style().isSimpleFill());
Brian Salomon653f42f2018-07-10 10:07:31 -040025 SkPath path;
26 fShape->asPath(&path);
27 SkASSERT(!path.isInverseFillType());
tomhudson@google.comd22b6e42011-06-24 15:53:40 +000028}
Brian Salomon653f42f2018-07-10 10:07:31 -040029#endif
30
31//////////////////////////////////////////////////////////////////////////////
32
33GrPathRenderer::GrPathRenderer() {}
34
Michael Ludwig2686d692020-04-17 20:21:37 +000035GrPathRenderer::StencilSupport GrPathRenderer::getStencilSupport(const GrStyledShape& shape) const {
Brian Salomon653f42f2018-07-10 10:07:31 -040036 SkDEBUGCODE(SkPath path;)
37 SkDEBUGCODE(shape.asPath(&path);)
38 SkASSERT(shape.style().isSimpleFill());
39 SkASSERT(!path.isInverseFillType());
40 return this->onGetStencilSupport(shape);
41}
42
43bool GrPathRenderer::drawPath(const DrawPathArgs& args) {
44#ifdef SK_DEBUG
45 args.validate();
46 CanDrawPathArgs canArgs;
Robert Phillips9da87e02019-02-04 13:26:26 -050047 canArgs.fCaps = args.fContext->priv().caps();
Greg Daniel46e366a2019-12-16 14:38:36 -050048 canArgs.fProxy = args.fRenderTargetContext->asRenderTargetProxy();
Brian Salomon653f42f2018-07-10 10:07:31 -040049 canArgs.fClipConservativeBounds = args.fClipConservativeBounds;
50 canArgs.fViewMatrix = args.fViewMatrix;
51 canArgs.fShape = args.fShape;
Chris Dalton6ce447a2019-06-23 18:07:38 -060052 canArgs.fAAType = args.fAAType;
Greg Danielbe7fc462019-01-03 16:40:42 -050053 canArgs.fTargetIsWrappedVkSecondaryCB = args.fRenderTargetContext->wrapsVkSecondaryCB();
Brian Salomon653f42f2018-07-10 10:07:31 -040054 canArgs.validate();
55
56 canArgs.fHasUserStencilSettings = !args.fUserStencilSettings->isUnused();
Brian Salomon653f42f2018-07-10 10:07:31 -040057 SkASSERT(CanDrawPath::kNo != this->canDrawPath(canArgs));
58 if (!args.fUserStencilSettings->isUnused()) {
59 SkPath path;
60 args.fShape->asPath(&path);
61 SkASSERT(args.fShape->style().isSimpleFill());
62 SkASSERT(kNoRestriction_StencilSupport == this->getStencilSupport(*args.fShape));
63 }
64#endif
65 return this->onDrawPath(args);
66}
67
68bool GrPathRenderer::IsStrokeHairlineOrEquivalent(const GrStyle& style, const SkMatrix& matrix,
Robert Phillips20390c32018-08-17 11:01:03 -040069 SkScalar* outCoverage) {
Brian Salomon653f42f2018-07-10 10:07:31 -040070 if (style.pathEffect()) {
71 return false;
72 }
73 const SkStrokeRec& stroke = style.strokeRec();
74 if (stroke.isHairlineStyle()) {
75 if (outCoverage) {
76 *outCoverage = SK_Scalar1;
77 }
78 return true;
79 }
80 return stroke.getStyle() == SkStrokeRec::kStroke_Style &&
81 SkDrawTreatAAStrokeAsHairline(stroke.getWidth(), matrix, outCoverage);
82}
83
bsalomon@google.com1dd9baa2013-05-20 16:49:06 +000084void GrPathRenderer::GetPathDevBounds(const SkPath& path,
Brian Salomon9f2b86c2019-10-22 10:37:46 -040085 SkISize devSize,
bsalomon@google.com1dd9baa2013-05-20 16:49:06 +000086 const SkMatrix& matrix,
87 SkRect* bounds) {
88 if (path.isInverseFillType()) {
Brian Salomon9f2b86c2019-10-22 10:37:46 -040089 *bounds = SkRect::Make(devSize);
bsalomon@google.com1dd9baa2013-05-20 16:49:06 +000090 return;
91 }
92 *bounds = path.getBounds();
93 matrix.mapRect(bounds);
94}
Brian Salomon653f42f2018-07-10 10:07:31 -040095
96void GrPathRenderer::onStencilPath(const StencilPathArgs& args) {
97 static constexpr GrUserStencilSettings kIncrementStencil(
98 GrUserStencilSettings::StaticInit<
99 0xffff,
100 GrUserStencilTest::kAlways,
101 0xffff,
102 GrUserStencilOp::kReplace,
103 GrUserStencilOp::kReplace,
104 0xffff>()
105 );
106
107 GrPaint paint;
108 DrawPathArgs drawArgs{args.fContext,
109 std::move(paint),
110 &kIncrementStencil,
111 args.fRenderTargetContext,
112 nullptr, // clip
113 args.fClipConservativeBounds,
114 args.fViewMatrix,
115 args.fShape,
Chris Dalton6ce447a2019-06-23 18:07:38 -0600116 (GrAA::kYes == args.fDoStencilMSAA) ? GrAAType::kMSAA : GrAAType::kNone,
Brian Salomon653f42f2018-07-10 10:07:31 -0400117 false};
118 this->drawPath(drawArgs);
119}