aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items/qquickpathitem.cpp
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.agocs@qt.io>2016-12-19 13:54:58 +0100
committerLaszlo Agocs <laszlo.agocs@qt.io>2017-01-10 14:47:30 +0000
commitaa24b8938bb03e688633e544dddeca5aff91940e (patch)
tree9f430add0d4ba2ccd3e7b17037d947185fe97c2e /src/quick/items/qquickpathitem.cpp
parent79831caa0533ad5f48322568557622596b85ed0f (diff)
Stencil clipping for NVPR
Fix also the fill rule interpretation on NVPR - it was the opposite of what QPainter was doing. Change-Id: I23ff3b20e3b066d4b4e07aaa68b7da1e09d9127d Reviewed-by: Andy Nichols <andy.nichols@qt.io>
Diffstat (limited to 'src/quick/items/qquickpathitem.cpp')
-rw-r--r--src/quick/items/qquickpathitem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quick/items/qquickpathitem.cpp b/src/quick/items/qquickpathitem.cpp
index 720916c900..0a4c721a74 100644
--- a/src/quick/items/qquickpathitem.cpp
+++ b/src/quick/items/qquickpathitem.cpp
@@ -426,7 +426,7 @@ void QQuickPathItemPrivate::createRenderer()
case QSGRendererInterface::OpenGL:
if (QQuickPathItemNvprRenderNode::isSupported()) {
rendererType = QQuickPathItem::NvprRenderer;
- renderer = new QQuickPathItemNvprRenderer;
+ renderer = new QQuickPathItemNvprRenderer(q);
} else {
rendererType = QQuickPathItem::GeometryRenderer;
renderer = new QQuickPathItemGenericRenderer(q);