9#include <QtCore/qthreadpool.h>
12#include <QtGui/qvector2d.h>
13#include <QtGui/qvector4d.h>
14#include <QtGui/private/qtriangulator_p.h>
15#include <QtGui/private/qtriangulatingstroker_p.h>
16#include <QtGui/private/qrhi_p.h>
18#include <QtQuick/private/qsgcurvefillnode_p.h>
19#include <QtQuick/private/qsgcurvestrokenode_p.h>
20#include <QtQuick/private/qquadpath_p.h>
21#include <QtQuick/private/qsgcurveprocessor_p.h>
22#include <QtQuick/qsgmaterial.h>
26Q_LOGGING_CATEGORY(lcShapeCurveRenderer,
"qt.shape.curverenderer");
31
32
33
34
35enum WireFrameType { SimpleWFT, StrokeWFT };
37class QQuickShapeWireFrameMaterialShader :
public QSGMaterialShader
40 QQuickShapeWireFrameMaterialShader(WireFrameType wft,
int viewCount) : m_wftype(wft)
42 setShaderFileName(VertexStage, wft == StrokeWFT ?
43 QStringLiteral(
":/qt-project.org/scenegraph/shaders_ng/shapestroke_wireframe.vert.qsb") :
44 QStringLiteral(
":/qt-project.org/shapes/shaders_ng/wireframe.vert.qsb"), viewCount);
45 setShaderFileName(FragmentStage,
47 QStringLiteral(
":/qt-project.org/scenegraph/shaders_ng/shapestroke_wireframe.frag.qsb") :
48 QStringLiteral(
":/qt-project.org/shapes/shaders_ng/wireframe.frag.qsb"), viewCount);
51 bool updateUniformData(RenderState &state, QSGMaterial *newMaterial, QSGMaterial *)
override;
53 WireFrameType m_wftype;
56class QQuickShapeWireFrameMaterial :
public QSGMaterial
59 QQuickShapeWireFrameMaterial(WireFrameType wft) : m_wftype(wft)
61 setFlag(Blending,
true);
64 int compare(
const QSGMaterial *other)
const override
66 return (type() - other->type());
69 void setCosmeticStroke(
bool c)
74 void setStrokeWidth(
float width)
76 m_strokeWidth = width;
81 return (m_cosmeticStroke ? -1.0 : 1.0) * qAbs(m_strokeWidth);
85 QSGMaterialType *type()
const override
87 static QSGMaterialType t;
90 QSGMaterialShader *createShader(QSGRendererInterface::RenderMode)
const override
92 return new QQuickShapeWireFrameMaterialShader(m_wftype, viewCount());
95 WireFrameType m_wftype;
96 bool m_cosmeticStroke =
false;
97 float m_strokeWidth = 1.0f;
100bool QQuickShapeWireFrameMaterialShader::updateUniformData(RenderState &state, QSGMaterial *newMaterial, QSGMaterial *)
102 QByteArray *buf = state.uniformData();
103 Q_ASSERT(buf->size() >= 64);
104 const int matrixCount = qMin(state.projectionMatrixCount(), newMaterial->viewCount());
105 bool changed =
false;
106 float localScale = 1.0f;
108 for (
int viewIndex = 0; viewIndex < matrixCount; ++viewIndex) {
109 if (state.isMatrixDirty()) {
110 QMatrix4x4 m = state.combinedMatrix(viewIndex);
111 if (m_wftype == StrokeWFT)
113 memcpy(buf->data() + 64 * viewIndex, m.constData(), 64);
118 const float matrixScale = qSqrt(qAbs(state.determinant())) * state.devicePixelRatio() * localScale;
119 memcpy(buf->data() + matrixCount * 64, &matrixScale, 4);
120 const float dpr = state.devicePixelRatio();
121 memcpy(buf->data() + matrixCount * 64 + 8, &dpr, 4);
122 const float opacity = 1.0;
123 memcpy(buf->data() + matrixCount * 64 + 4, &opacity, 4);
124 const float strokeWidth =
static_cast<QQuickShapeWireFrameMaterial *>(newMaterial)->strokeWidth();
125 memcpy(buf->data() + matrixCount * 64 + 12, &strokeWidth, 4);
132template <WireFrameType wftype>
133class QQuickShapeWireFrameNode :
public QSGCurveAbstractNode
136 struct WireFrameVertex
138 float x, y, u, v, w, nx, ny, sw;
141 QQuickShapeWireFrameNode()
144 setFlag(OwnsGeometry,
true);
145 setGeometry(
new QSGGeometry(attributes(), 0, 0));
149 void setColor(QColor col)
override
154 void setUseStandardDerivatives(
bool useStandardDerivatives) override
156 Q_UNUSED(useStandardDerivatives);
159 void setCosmeticStroke(
bool c)
161 m_material->setCosmeticStroke(c);
164 void setStrokeWidth(
float width)
166 m_material->setStrokeWidth(width);
169 void activateMaterial()
171 m_material.reset(
new QQuickShapeWireFrameMaterial(wftype));
172 setMaterial(m_material.data());
175 static const QSGGeometry::AttributeSet &attributes()
177 static QSGGeometry::Attribute data[] = {
178 QSGGeometry::Attribute::createWithAttributeType(0, 2, QSGGeometry::FloatType, QSGGeometry::PositionAttribute),
179 QSGGeometry::Attribute::createWithAttributeType(1, 3, QSGGeometry::FloatType, QSGGeometry::TexCoordAttribute),
180 QSGGeometry::Attribute::createWithAttributeType(2, 3, QSGGeometry::FloatType, QSGGeometry::TexCoordAttribute),
182 static QSGGeometry::AttributeSet attrs = { 3,
sizeof(WireFrameVertex), data };
186 void cookGeometry() override
192 QScopedPointer<QQuickShapeWireFrameMaterial> m_material;
196QQuickShapeCurveRenderer::~QQuickShapeCurveRenderer()
198 for (
const PathData &pd : std::as_const(m_paths)) {
199 if (pd.currentRunner) {
200 pd.currentRunner->orphaned =
true;
201 if (!pd.currentRunner->isAsync || pd.currentRunner->isDone)
202 delete pd.currentRunner;
207void QQuickShapeCurveRenderer::beginSync(
int totalCount,
bool *countChanged)
209 if (countChanged !=
nullptr && totalCount != m_paths.size())
210 *countChanged =
true;
211 for (
int i = totalCount; i < m_paths.size(); i++) {
212 setFillTextureProvider(i,
nullptr);
213 m_removedPaths.append(m_paths.at(i));
215 m_paths.resize(totalCount);
218void QQuickShapeCurveRenderer::setPath(
int index,
const QPainterPath &path, QQuickShapePath::PathHints pathHints)
220 auto &pathData = m_paths[index];
221 pathData.originalPath = path;
222 pathData.pathHints = pathHints;
223 pathData.m_dirty |= PathDirty;
226void QQuickShapeCurveRenderer::setStrokeColor(
int index,
const QColor &color)
228 auto &pathData = m_paths[index];
229 const bool wasVisible = pathData.isStrokeVisible();
230 pathData.pen.setColor(color);
231 if (pathData.isStrokeVisible() != wasVisible)
232 pathData.m_dirty |= StrokeDirty;
234 pathData.m_dirty |= UniformsDirty;
237void QQuickShapeCurveRenderer::setStrokeWidth(
int index, qreal w)
239 auto &pathData = m_paths[index];
241 pathData.validPenWidth =
true;
242 pathData.pen.setWidthF(w);
244 pathData.validPenWidth =
false;
246 pathData.m_dirty |= StrokeDirty;
249void QQuickShapeCurveRenderer::setCosmeticStroke(
int index,
bool c)
251 auto &pathData = m_paths[index];
252 pathData.pen.setCosmetic(c);
253 pathData.m_dirty |= StrokeDirty;
256void QQuickShapeCurveRenderer::setFillColor(
int index,
const QColor &color)
258 auto &pathData = m_paths[index];
259 const bool wasVisible = pathData.isFillVisible();
260 pathData.fillColor = color;
261 if (pathData.isFillVisible() != wasVisible)
262 pathData.m_dirty |= FillDirty;
264 pathData.m_dirty |= UniformsDirty;
267void QQuickShapeCurveRenderer::setFillRule(
int index, QQuickShapePath::FillRule fillRule)
269 auto &pathData = m_paths[index];
270 pathData.fillRule = Qt::FillRule(fillRule);
271 pathData.m_dirty |= PathDirty;
274void QQuickShapeCurveRenderer::setJoinStyle(
int index,
275 QQuickShapePath::JoinStyle joinStyle,
278 auto &pathData = m_paths[index];
279 pathData.pen.setJoinStyle(Qt::PenJoinStyle(joinStyle));
280 pathData.pen.setMiterLimit(miterLimit);
281 pathData.m_dirty |= StrokeDirty;
284void QQuickShapeCurveRenderer::setCapStyle(
int index, QQuickShapePath::CapStyle capStyle)
286 auto &pathData = m_paths[index];
287 pathData.pen.setCapStyle(Qt::PenCapStyle(capStyle));
288 pathData.m_dirty |= StrokeDirty;
291void QQuickShapeCurveRenderer::setStrokeStyle(
int index,
292 QQuickShapePath::StrokeStyle strokeStyle,
294 const QList<qreal> &dashPattern)
296 auto &pathData = m_paths[index];
297 pathData.pen.setStyle(Qt::PenStyle(strokeStyle));
298 if (strokeStyle == QQuickShapePath::DashLine) {
299 pathData.pen.setDashPattern(dashPattern);
300 pathData.pen.setDashOffset(dashOffset);
302 pathData.m_dirty |= StrokeDirty;
305void QQuickShapeCurveRenderer::setFillGradient(
int index, QQuickShapeGradient *gradient)
307 PathData &pd(m_paths[index]);
308 const bool wasVisible = pd.isFillVisible();
309 pd.gradientType = QGradient::NoGradient;
310 if (QQuickShapeLinearGradient *g = qobject_cast<QQuickShapeLinearGradient *>(gradient)) {
311 pd.gradientType = QGradient::LinearGradient;
312 pd.gradient.stops = gradient->gradientStops();
313 pd.gradient.spread = QGradient::Spread(gradient->spread());
314 pd.gradient.a = QPointF(g->x1(), g->y1());
315 pd.gradient.b = QPointF(g->x2(), g->y2());
316 }
else if (QQuickShapeRadialGradient *g = qobject_cast<QQuickShapeRadialGradient *>(gradient)) {
317 pd.gradientType = QGradient::RadialGradient;
318 pd.gradient.a = QPointF(g->centerX(), g->centerY());
319 pd.gradient.b = QPointF(g->focalX(), g->focalY());
320 pd.gradient.v0 = g->centerRadius();
321 pd.gradient.v1 = g->focalRadius();
322 }
else if (QQuickShapeConicalGradient *g = qobject_cast<QQuickShapeConicalGradient *>(gradient)) {
323 pd.gradientType = QGradient::ConicalGradient;
324 pd.gradient.a = QPointF(g->centerX(), g->centerY());
325 pd.gradient.v0 = g->angle();
326 }
else if (gradient !=
nullptr) {
327 static bool warned =
false;
330 qCWarning(lcShapeCurveRenderer) <<
"Unsupported gradient fill";
334 if (pd.gradientType != QGradient::NoGradient) {
335 pd.gradient.stops = gradient->gradientStops();
336 pd.gradient.spread = QGradient::Spread(gradient->spread());
339 pd.m_dirty |= (pd.isFillVisible() != wasVisible) ? FillDirty : UniformsDirty;
342void QQuickShapeCurveRenderer::setFillTransform(
int index,
const QSGTransform &transform)
344 auto &pathData = m_paths[index];
345 pathData.fillTransform = transform;
346 pathData.m_dirty |= UniformsDirty;
349void QQuickShapeCurveRenderer::setFillTextureProvider(
int index, QQuickItem *textureProviderItem)
351 auto &pathData = m_paths[index];
352 const bool wasVisible = pathData.isFillVisible();
353 if (pathData.fillTextureProviderItem !=
nullptr)
354 QQuickItemPrivate::get(pathData.fillTextureProviderItem)->derefWindow();
355 pathData.fillTextureProviderItem = textureProviderItem;
356 if (pathData.fillTextureProviderItem !=
nullptr)
357 QQuickItemPrivate::get(pathData.fillTextureProviderItem)->refWindow(m_item->window());
358 pathData.m_dirty |= (pathData.isFillVisible() != wasVisible) ? FillDirty : UniformsDirty;
361void QQuickShapeCurveRenderer::handleSceneChange(QQuickWindow *window)
363 for (
auto &pathData : m_paths) {
364 if (pathData.fillTextureProviderItem !=
nullptr) {
365 if (window ==
nullptr)
366 QQuickItemPrivate::get(pathData.fillTextureProviderItem)->derefWindow();
368 QQuickItemPrivate::get(pathData.fillTextureProviderItem)->refWindow(window);
373void QQuickShapeCurveRenderer::setAsyncCallback(
void (*callback)(
void *),
void *data)
375 m_asyncCallback = callback;
376 m_asyncCallbackData = data;
379void QQuickShapeCurveRenderer::endSync(
bool async)
381 bool asyncThreadsRunning =
false;
383 for (PathData &pathData : m_paths) {
384 if (!pathData.m_dirty)
387 if (pathData.m_dirty == UniformsDirty) {
392 if (pathData.currentRunner) {
395 if (pathData.currentRunner->isAsync) {
398 asyncThreadsRunning =
true;
402 delete pathData.currentRunner;
403 pathData.currentRunner =
nullptr;
407 pathData.currentRunner =
new QQuickShapeCurveRunnable;
408 setUpRunner(&pathData);
412 pathData.currentRunner->isAsync =
true;
413 QThreadPool::globalInstance()->start(pathData.currentRunner);
414 asyncThreadsRunning =
true;
418 pathData.currentRunner->run();
422 if (async && !asyncThreadsRunning && m_asyncCallback)
423 m_asyncCallback(m_asyncCallbackData);
426void QQuickShapeCurveRenderer::setUpRunner(PathData *pathData)
428 Q_ASSERT(pathData->currentRunner);
429 QQuickShapeCurveRunnable *runner = pathData->currentRunner;
430 runner->isDone =
false;
431 runner->pathData = *pathData;
432 runner->pathData.fillNodes.clear();
433 runner->pathData.strokeNodes.clear();
434 runner->pathData.currentRunner =
nullptr;
435 pathData->m_dirty = 0;
436 if (!runner->isInitialized) {
437 runner->isInitialized =
true;
438 runner->setAutoDelete(
false);
439 QObject::connect(runner, &QQuickShapeCurveRunnable::done, qApp,
440 [
this](QQuickShapeCurveRunnable *r) {
444 }
else if (r->isAsync) {
445 maybeUpdateAsyncItem();
451void QQuickShapeCurveRenderer::maybeUpdateAsyncItem()
453 for (
const PathData &pd : std::as_const(m_paths)) {
454 if (pd.currentRunner && !pd.currentRunner->isDone)
460 m_asyncCallback(m_asyncCallbackData);
465 qDeleteAll(pathData.fillNodes);
466 qDeleteAll(pathData.strokeNodes);
471 QQuickShapeCurveRenderer::processPath(&pathData);
477 static bool d = qEnvironmentVariableIntValue(
"QT_QUICKSHAPES_DISABLE_STANDARD_DERIVATIVES") != 0;
481void QQuickShapeCurveRenderer::updateNode()
486 auto updateUniforms = [](
const PathData &pathData) {
487 for (
auto &pathNode : std::as_const(pathData.fillNodes)) {
488 if (pathNode->isDebugNode)
490 QSGCurveFillNode *fillNode =
static_cast<QSGCurveFillNode *>(pathNode);
491 fillNode->setColor(pathData.fillColor);
492 fillNode->setGradientType(pathData.gradientType);
493 fillNode->setFillGradient(pathData.gradient);
494 fillNode->setFillTransform(pathData.fillTransform);
495 fillNode->setFillTextureProvider(pathData.fillTextureProviderItem !=
nullptr
496 ? pathData.fillTextureProviderItem->textureProvider()
499 for (QSGCurveAbstractNode *pathNode : std::as_const(pathData.strokeNodes)) {
500 pathNode->setColor(pathData.pen.color());
501 if (pathNode->isDebugNode) {
502 auto *wfNode =
static_cast<QQuickShapeWireFrameNode<StrokeWFT> *>(pathNode);
503 wfNode->setStrokeWidth(pathData.pen.widthF());
504 wfNode->setCosmeticStroke(pathData.pen.isCosmetic());
506 auto *strokeNode =
static_cast<QSGCurveStrokeNode *>(pathNode);
507 strokeNode->setStrokeWidth(pathData.pen.widthF());
508 strokeNode->setCosmeticStroke(pathData.pen.isCosmetic());
513 NodeList toBeDeleted;
515 for (
const PathData &pathData : std::as_const(m_removedPaths)) {
516 toBeDeleted += pathData.fillNodes;
517 toBeDeleted += pathData.strokeNodes;
519 m_removedPaths.clear();
521 const bool supportsDerivatives = m_item !=
nullptr
522 && m_item->window() !=
nullptr
523 && m_item->window()->rhi() !=
nullptr
524 && !disableScreenSpaceDerivativeShader()
525 ? m_item->window()->rhi()->isFeatureSupported(QRhi::ScreenSpaceDerivatives)
528 for (
int i = 0; i < m_paths.size(); i++) {
529 PathData &pathData = m_paths[i];
530 if (pathData.currentRunner) {
531 if (!pathData.currentRunner->isDone)
534 QSGNode *nextNode = pathData.strokeNodes.value(0);
536 for (
int j = i + 1; !nextNode && j < m_paths.size(); j++) {
537 const PathData &pd = m_paths[j];
538 nextNode = pd.fillNodes.isEmpty() ? pd.strokeNodes.value(0) : pd.fillNodes.value(0);
541 PathData &newData = pathData.currentRunner->pathData;
542 if (newData.m_dirty & PathDirty)
543 pathData.path = newData.path;
544 if (newData.m_dirty & FillDirty) {
545 pathData.fillPath = newData.fillPath;
546 for (
auto *node : std::as_const(newData.fillNodes)) {
547 node->setUseStandardDerivatives(supportsDerivatives);
549 m_rootNode->insertChildNodeBefore(node, nextNode);
551 m_rootNode->appendChildNode(node);
553 toBeDeleted += pathData.fillNodes;
554 pathData.fillNodes = newData.fillNodes;
556 if (newData.m_dirty & StrokeDirty) {
557 for (
auto *node : std::as_const(newData.strokeNodes)) {
558 node->setUseStandardDerivatives(supportsDerivatives);
560 m_rootNode->insertChildNodeBefore(node, nextNode);
562 m_rootNode->appendChildNode(node);
564 toBeDeleted += pathData.strokeNodes;
565 pathData.strokeNodes = newData.strokeNodes;
567 if (newData.m_dirty & UniformsDirty)
568 updateUniforms(newData);
571 newData.fillNodes.clear();
572 newData.strokeNodes.clear();
575 if (pathData.currentRunner->isAsync && (pathData.m_dirty & ~UniformsDirty)) {
577 setUpRunner(&pathData);
578 QThreadPool::globalInstance()->start(pathData.currentRunner);
582 pathData.currentRunner->deleteLater();
583 pathData.currentRunner =
nullptr;
587 if (pathData.m_dirty == UniformsDirty && !pathData.currentRunner) {
589 updateUniforms(pathData);
590 pathData.m_dirty = 0;
593 qDeleteAll(toBeDeleted);
596void QQuickShapeCurveRenderer::processPath(PathData *pathData)
598 static const bool doOverlapSolving = !qEnvironmentVariableIntValue(
"QT_QUICKSHAPES_DISABLE_OVERLAP_SOLVER");
599 static const bool doIntersetionSolving = !qEnvironmentVariableIntValue(
"QT_QUICKSHAPES_DISABLE_INTERSECTION_SOLVER");
600 static const bool useTriangulatingStroker = qEnvironmentVariableIntValue(
"QT_QUICKSHAPES_TRIANGULATING_STROKER");
601 static const bool simplifyPath = qEnvironmentVariableIntValue(
"QT_QUICKSHAPES_SIMPLIFY_PATHS");
603 int &dirtyFlags = pathData->m_dirty;
605 if (dirtyFlags & PathDirty) {
607 pathData->path = QQuadPath::fromPainterPath(pathData->originalPath.simplified(), QQuadPath::PathLinear | QQuadPath::PathNonIntersecting | QQuadPath::PathNonOverlappingControlPointTriangles);
609 pathData->path = QQuadPath::fromPainterPath(pathData->originalPath, QQuadPath::PathHints(
int(pathData->pathHints)));
610 pathData->path.setFillRule(pathData->fillRule);
611 pathData->fillPath = {};
612 dirtyFlags |= (FillDirty | StrokeDirty);
615 if (dirtyFlags & FillDirty) {
616 if (pathData->isFillVisible()) {
617 if (pathData->fillPath.isEmpty()) {
618 pathData->fillPath = pathData->path.subPathsClosed();
619 if (doIntersetionSolving)
620 QSGCurveProcessor::solveIntersections(pathData->fillPath);
621 pathData->fillPath.addCurvatureData();
622 if (doOverlapSolving)
623 QSGCurveProcessor::solveOverlaps(pathData->fillPath);
625 pathData->fillNodes = addFillNodes(pathData->fillPath);
626 dirtyFlags |= (StrokeDirty | UniformsDirty);
630 if (dirtyFlags & StrokeDirty) {
631 if (pathData->isStrokeVisible()) {
632 const QPen &pen = pathData->pen;
633 const bool solid = (pen.style() == Qt::SolidLine);
634 const QQuadPath &strokePath = solid ? pathData->path
635 : pathData->path.dashed(pen.widthF(),
638 if (useTriangulatingStroker)
639 pathData->strokeNodes = addTriangulatingStrokerNodes(strokePath, pen);
641 pathData->strokeNodes = addCurveStrokeNodes(strokePath, pen);
646QQuickShapeCurveRenderer::NodeList QQuickShapeCurveRenderer::addFillNodes(
const QQuadPath &path)
649 std::unique_ptr<QSGCurveFillNode> node(
new QSGCurveFillNode);
650 std::unique_ptr<QQuickShapeWireFrameNode<SimpleWFT>> wfNode;
652 const qsizetype approxDataCount = 20 * path.elementCount();
653 node->reserve(approxDataCount);
655 const int debugFlags = debugVisualization();
656 const bool wireFrame = debugFlags & DebugWireframe;
658 if (Q_LIKELY(!wireFrame)) {
659 QSGCurveProcessor::processFill(path,
661 [&node](
const std::array<QVector2D, 3> &v,
662 const std::array<QVector2D, 3> &n,
663 QSGCurveProcessor::uvForPointCallback uvForPoint)
665 node->appendTriangle(v, n, uvForPoint);
668 QList<QQuickShapeWireFrameNode<SimpleWFT>::WireFrameVertex> wfVertices;
669 wfVertices.reserve(approxDataCount);
670 QSGCurveProcessor::processFill(path,
672 [&wfVertices, &node](
const std::array<QVector2D, 3> &v,
673 const std::array<QVector2D, 3> &n,
674 QSGCurveProcessor::uvForPointCallback uvForPoint)
676 node->appendTriangle(v, n, uvForPoint);
678 wfVertices.append({v.at(0).x(), v.at(0).y(), 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f });
679 wfVertices.append({v.at(1).x(), v.at(1).y(), 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 1.0f });
680 wfVertices.append({v.at(2).x(), v.at(2).y(), 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 1.0f });
683 wfNode.reset(
new QQuickShapeWireFrameNode<SimpleWFT>);
684 const QList<quint32> indices = node->uncookedIndexes();
685 QSGGeometry *wfg =
new QSGGeometry(QQuickShapeWireFrameNode<SimpleWFT>::attributes(),
688 QSGGeometry::UnsignedIntType);
689 wfNode->setGeometry(wfg);
691 wfg->setDrawingMode(QSGGeometry::DrawTriangles);
692 memcpy(wfg->indexData(),
694 indices.size() * wfg->sizeOfIndex());
695 memcpy(wfg->vertexData(),
697 wfg->vertexCount() * wfg->sizeOfVertex());
700 if (Q_UNLIKELY(debugFlags & DebugCurves))
701 node->setDebug(0.5f);
703 if (node->uncookedIndexes().size() > 0) {
704 node->cookGeometry();
705 ret.append(node.release());
707 ret.append(wfNode.release());
713QQuickShapeCurveRenderer::NodeList QQuickShapeCurveRenderer::addTriangulatingStrokerNodes(
const QQuadPath &path,
const QPen &pen)
716 const QColor &color = pen.color();
718 QList<QQuickShapeWireFrameNode<StrokeWFT>::WireFrameVertex> wfVertices;
720 QTriangulatingStroker stroker;
721 const auto painterPath = path.toPainterPath();
722 const QVectorPath &vp = qtVectorPathForPath(painterPath);
723 stroker.process(vp, pen, {}, {});
725 auto *node =
new QSGCurveFillNode;
727 auto uvForPoint = [](QVector2D v1, QVector2D v2, QVector2D p)
729 double divisor = v1.x() * v2.y() - v2.x() * v1.y();
731 float u = (p.x() * v2.y() - p.y() * v2.x()) / divisor;
732 float v = (p.y() * v1.x() - p.x() * v1.y()) / divisor;
734 return QVector2D(u, v);
739 auto curveUv = [uvForPoint](QVector2D p0, QVector2D p1, QVector2D p2, QVector2D p)
741 QVector2D v1 = 2 * (p1 - p0);
742 QVector2D v2 = p2 - v1 - p0;
743 return uvForPoint(v1, v2, p - p0);
746 auto findPointOtherSide = [](
const QVector2D &startPoint,
const QVector2D &endPoint,
const QVector2D &referencePoint){
748 QVector2D baseLine = endPoint - startPoint;
749 QVector2D insideVector = referencePoint - startPoint;
750 QVector2D normal = QVector2D(-baseLine.y(), baseLine.x());
752 bool swap = QVector2D::dotProduct(insideVector, normal) < 0;
754 return swap ? startPoint + normal : startPoint - normal;
757 static bool disableExtraTriangles = qEnvironmentVariableIntValue(
"QT_QUICKSHAPES_WIP_DISABLE_EXTRA_STROKE_TRIANGLES");
759 auto addStrokeTriangle = [&](
const QVector2D &p1,
const QVector2D &p2,
const QVector2D &p3){
760 if (p1 == p2 || p2 == p3) {
764 auto uvForPoint = [&p1, &p2, &p3, curveUv](QVector2D p) {
765 auto uv = curveUv(p1, p2, p3, p);
766 return QVector3D(uv.x(), uv.y(), 0.0f);
769 node->appendTriangle(p1, p2, p3, uvForPoint);
772 wfVertices.append({p1.x(), p1.y(), 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f});
773 wfVertices.append({p2.x(), p2.y(), 0.0f, 0.1f, 0.0f, 0.0f, 0.0f, 1.0f});
774 wfVertices.append({p3.x(), p3.y(), 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 1.0f});
776 if (!disableExtraTriangles) {
779 QVector2D op = findPointOtherSide(p1, p3, p2);
780 node->appendTriangle(p1, op, p3, uvForPoint);
782 wfVertices.append({p1.x(), p1.y(), 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f});
783 wfVertices.append({op.x(), op.y(), 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 1.0f});
784 wfVertices.append({p3.x(), p3.y(), 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 1.0f});
788 const int vertCount = stroker.vertexCount() / 2;
789 const float *verts = stroker.vertices();
790 for (
int i = 0; i < vertCount - 2; ++i) {
792 for (
int j = 0; j < 3; ++j) {
793 p[j] = QVector2D(verts[(i+j)*2], verts[(i+j)*2 + 1]);
795 addStrokeTriangle(p[0], p[1], p[2]);
798 QList<quint32> indices = node->uncookedIndexes();
799 if (indices.size() > 0) {
800 node->setColor(color);
802 node->cookGeometry();
805 const bool wireFrame = debugVisualization() & DebugWireframe;
807 QQuickShapeWireFrameNode<StrokeWFT> *wfNode =
new QQuickShapeWireFrameNode<StrokeWFT>;
808 QSGGeometry *wfg =
new QSGGeometry(QQuickShapeWireFrameNode<StrokeWFT>::attributes(),
811 QSGGeometry::UnsignedIntType);
812 wfNode->setGeometry(wfg);
814 wfg->setDrawingMode(QSGGeometry::DrawTriangles);
815 memcpy(wfg->indexData(),
817 indices.size() * wfg->sizeOfIndex());
818 memcpy(wfg->vertexData(),
820 wfg->vertexCount() * wfg->sizeOfVertex());
828void QQuickShapeCurveRenderer::setRootNode(QSGNode *node)
830 clearNodeReferences();
834void QQuickShapeCurveRenderer::clearNodeReferences()
836 for (PathData &pd : m_paths) {
837 pd.fillNodes.clear();
838 pd.strokeNodes.clear();
842int QQuickShapeCurveRenderer::debugVisualizationFlags = QQuickShapeCurveRenderer::NoDebug;
844int QQuickShapeCurveRenderer::debugVisualization()
846 static const int envFlags = qEnvironmentVariableIntValue(
"QT_QUICKSHAPES_DEBUG");
847 return debugVisualizationFlags | envFlags;
850void QQuickShapeCurveRenderer::setDebugVisualization(
int options)
852 if (debugVisualizationFlags == options)
854 debugVisualizationFlags = options;
858
859
860
861
862QQuickShapeCurveRenderer::NodeList QQuickShapeCurveRenderer::addCurveStrokeNodes(
const QQuadPath &path,
const QPen &pen)
866 const bool debug = debugVisualization() & DebugCurves;
867 auto *node =
new QSGCurveStrokeNode;
868 node->setDebug(0.2f * debug);
869 QList<QQuickShapeWireFrameNode<StrokeWFT>::WireFrameVertex> wfVertices;
871 const float penWidth = pen.widthF();
873 static const int subdivisions = qEnvironmentVariable(
"QT_QUICKSHAPES_STROKE_SUBDIVISIONS", QStringLiteral(
"3")).toInt();
875 const bool wireFrame = debugVisualization() & DebugWireframe;
876 QSGCurveProcessor::processStroke(path,
878 penWidth, pen.isCosmetic(),
882 [&wfVertices, &node, &wireFrame](
const std::array<QVector2D, 3> &vtx,
883 const std::array<QVector2D, 3> &ctl,
884 const std::array<QVector2D, 3> &n,
885 const std::array<
float, 3> &ex,
886 QSGCurveStrokeNode::TriangleFlags flags)
888 const QVector2D &v0 = vtx.at(0);
889 const QVector2D &v1 = vtx.at(1);
890 const QVector2D &v2 = vtx.at(2);
891 if (flags.testFlag(QSGCurveStrokeNode::TriangleFlag::Line))
892 node->appendTriangle(vtx, std::array<QVector2D, 2>{ctl.at(0), ctl.at(2)}, n, ex);
894 node->appendTriangle(vtx, ctl, n, ex);
896 if (Q_UNLIKELY(wireFrame)) {
897 wfVertices.append({v0.x(), v0.y(), 1.0f, 0.0f, 0.0f, n.at(0).x(), n.at(0).y(), ex.at(0)});
898 wfVertices.append({v1.x(), v1.y(), 0.0f, 1.0f, 0.0f, n.at(1).x(), n.at(1).y(), ex.at(1)});
899 wfVertices.append({v2.x(), v2.y(), 0.0f, 0.0f, 1.0f, n.at(2).x(), n.at(2).y(), ex.at(2)});
904 auto indexCopy = node->uncookedIndexes();
906 node->setColor(pen.color());
907 node->setStrokeWidth(penWidth);
908 node->setCosmeticStroke(pen.isCosmetic());
909 node->cookGeometry();
912 if (Q_UNLIKELY(wireFrame)) {
913 QQuickShapeWireFrameNode<StrokeWFT> *wfNode =
new QQuickShapeWireFrameNode<StrokeWFT>;
915 QSGGeometry *wfg =
new QSGGeometry(QQuickShapeWireFrameNode<StrokeWFT>::attributes(),
918 QSGGeometry::UnsignedIntType);
919 wfNode->setGeometry(wfg);
920 wfNode->setCosmeticStroke(pen.isCosmetic());
921 wfNode->setStrokeWidth(penWidth);
923 wfg->setDrawingMode(QSGGeometry::DrawTriangles);
924 memcpy(wfg->indexData(),
926 indexCopy.size() * wfg->sizeOfIndex());
927 memcpy(wfg->vertexData(),
929 wfg->vertexCount() * wfg->sizeOfVertex());
void run() override
Implement this pure virtual function in your subclass.
Combined button and popup list for selecting options.
static bool disableScreenSpaceDerivativeShader()