6#include "QskStrokeNode.h"
8#include "QskGradient.h"
9#include "QskRgbValue.h"
10#include "QskInternalMacros.h"
12#include <qpainterpath.h>
15#include <private/qtriangulatingstroker_p.h>
18static inline bool qskIsPenVisible(
const QPen& pen )
20 if ( pen.style() == Qt::NoPen )
23 if ( pen.brush().gradient() )
29 if ( !QskRgb::isVisible( pen.color() ) )
36QskStrokeNode::QskStrokeNode()
40QskStrokeNode::~QskStrokeNode() =
default;
42void QskStrokeNode::updatePath(
const QPainterPath& path,
const QPen& pen )
44 updatePath( path, QTransform(), pen );
47void QskStrokeNode::updatePath(
48 const QPainterPath& path,
const QTransform& transform,
const QPen& pen )
50 if ( path.isEmpty() || !qskIsPenVisible( pen ) )
56 if (
auto qGradient = pen.brush().gradient() )
58 const auto r = transform.mapRect( path.boundingRect() );
61 gradient.setStretchMode( QskGradient::StretchToSize );
63 setColoring( r, gradient );
66 setColoring( pen.color() );
74 const auto scaledPath = transform.map( path );
76 auto effectivePen = pen;
78 if ( !effectivePen.isCosmetic() )
80 const auto scaleFactor = qMin( transform.m11(), transform.m22() );
81 if ( scaleFactor != 1.0 )
83 effectivePen.setWidth( effectivePen.widthF() * scaleFactor );
84 effectivePen.setCosmetic(
false );
88 QTriangulatingStroker stroker;
90 if ( pen.style() == Qt::SolidLine )
93 stroker.process( qtVectorPathForPath( scaledPath ), effectivePen, {}, {} );
97 constexpr QRectF clipRect;
99 QDashedStrokeProcessor dashStroker;
100 dashStroker.process( qtVectorPathForPath( scaledPath ),
101 effectivePen, clipRect, {} );
103 const QVectorPath dashedVectorPath( dashStroker.points(),
104 dashStroker.elementCount(), dashStroker.elementTypes(), 0 );
106 stroker.process( dashedVectorPath, effectivePen, {}, {} );
109 auto& geometry = *this->geometry();
112 geometry.setDrawingMode( QSGGeometry::DrawTriangleStrip );
113 geometry.allocate( stroker.vertexCount() / 2 );
115 if ( isGeometryColored() )
119 const auto v = stroker.vertices();
120 auto points = geometry.vertexDataAsColoredPoint2D();
122 for (
int i = 0; i < geometry.vertexCount(); i++ )
124 const auto j = 2 * i;
125 points[i].set( v[j], v[j + 1], c.r, c.g, c.b, c.a );
130 memcpy( geometry.vertexData(), stroker.vertices(),
131 stroker.vertexCount() *
sizeof(
float ) );
134 geometry.markVertexDataDirty();
135 markDirty( QSGNode::DirtyGeometry );