summaryrefslogtreecommitdiffstats
path: root/tests/manual/qtbug-76766
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/qtbug-76766')
-rw-r--r--tests/manual/qtbug-76766/PostProcess.qml10
-rw-r--r--tests/manual/qtbug-76766/SceneRoot.qml12
2 files changed, 10 insertions, 12 deletions
diff --git a/tests/manual/qtbug-76766/PostProcess.qml b/tests/manual/qtbug-76766/PostProcess.qml
index cd4c9c0c6..3e9218451 100644
--- a/tests/manual/qtbug-76766/PostProcess.qml
+++ b/tests/manual/qtbug-76766/PostProcess.qml
@@ -103,11 +103,13 @@ Entity {
effect: materialEffect
}
- PlaneMesh {
+ GeometryRenderer {
id: planeMesh
- width: 2.0
- height: 2.0
- meshResolution: Qt.size(2, 2)
+ view: PlaneMesh {
+ width: 2.0
+ height: 2.0
+ meshResolution: Qt.size(2, 2)
+ }
}
components : [
diff --git a/tests/manual/qtbug-76766/SceneRoot.qml b/tests/manual/qtbug-76766/SceneRoot.qml
index 6e34633b1..93e96a43d 100644
--- a/tests/manual/qtbug-76766/SceneRoot.qml
+++ b/tests/manual/qtbug-76766/SceneRoot.qml
@@ -111,8 +111,7 @@ Entity {
Material1 {
color: "red"
},
- SphereMesh {
- }
+ GeometryRenderer { view: SphereMesh { } }
]
}
@@ -125,8 +124,7 @@ Entity {
Material2 {
color: "green"
},
- SphereMesh {
- }
+ GeometryRenderer { view: SphereMesh { } }
]
}
}
@@ -149,8 +147,7 @@ Entity {
loops: Animation.Infinite
}
},
- SphereMesh {
- }
+ GeometryRenderer { view: SphereMesh { } }
]
}
@@ -164,8 +161,7 @@ Entity {
Material2 {
color: "orange"
},
- SphereMesh {
- }
+ GeometryRenderer { view: SphereMesh { } }
]
}
}