blob: 16d98db460266d6f9306d610386c74cd08255201 [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 Ludwig663afe52019-06-03 16:46:19 -040015#include "src/gpu/geometry/GrShape.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
35GrPathRenderer::StencilSupport GrPathRenderer::getStencilSupport(const GrShape& shape) const {
36 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();
Chris Daltoneffee202019-07-01 22:28:03 -060048 canArgs.fProxy = args.fRenderTargetContext->proxy();
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 +000084
85void GrPathRenderer::GetPathDevBounds(const SkPath& path,
86 int devW, int devH,
87 const SkMatrix& matrix,
88 SkRect* bounds) {
89 if (path.isInverseFillType()) {
90 *bounds = SkRect::MakeWH(SkIntToScalar(devW), SkIntToScalar(devH));
91 return;
92 }
93 *bounds = path.getBounds();
94 matrix.mapRect(bounds);
95}
Brian Salomon653f42f2018-07-10 10:07:31 -040096
97void GrPathRenderer::onStencilPath(const StencilPathArgs& args) {
98 static constexpr GrUserStencilSettings kIncrementStencil(
99 GrUserStencilSettings::StaticInit<
100 0xffff,
101 GrUserStencilTest::kAlways,
102 0xffff,
103 GrUserStencilOp::kReplace,
104 GrUserStencilOp::kReplace,
105 0xffff>()
106 );
107
108 GrPaint paint;
109 DrawPathArgs drawArgs{args.fContext,
110 std::move(paint),
111 &kIncrementStencil,
112 args.fRenderTargetContext,
113 nullptr, // clip
114 args.fClipConservativeBounds,
115 args.fViewMatrix,
116 args.fShape,
Chris Dalton6ce447a2019-06-23 18:07:38 -0600117 (GrAA::kYes == args.fDoStencilMSAA) ? GrAAType::kMSAA : GrAAType::kNone,
Brian Salomon653f42f2018-07-10 10:07:31 -0400118 false};
119 this->drawPath(drawArgs);
120}