summaryrefslogtreecommitdiffstats
path: root/tests/manual/qardboard/QardboardFrameGraph.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/qardboard/QardboardFrameGraph.qml')
-rw-r--r--tests/manual/qardboard/QardboardFrameGraph.qml43
1 files changed, 43 insertions, 0 deletions
diff --git a/tests/manual/qardboard/QardboardFrameGraph.qml b/tests/manual/qardboard/QardboardFrameGraph.qml
new file mode 100644
index 000000000..9379b949a
--- /dev/null
+++ b/tests/manual/qardboard/QardboardFrameGraph.qml
@@ -0,0 +1,43 @@
+// Copyright (C) 2017 Klaralvdalens Datakonsult AB (KDAB).
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+import Qt3D.Core 2.0
+import Qt3D.Render 2.0
+
+Viewport {
+ property alias leftCamera: leftCameraSelector.camera
+ property alias rightCamera: rightCameraSelector.camera
+ property alias window: surfaceSelector.surface
+
+ RenderSurfaceSelector {
+ id: surfaceSelector
+
+ // ColorMask is reset by default
+ // By default reset to the default if not specified
+ ClearBuffers {
+ clearColor: "white"
+ buffers: ClearBuffers.ColorDepthBuffer
+ NoDraw {} // We just want to clear the buffers
+ }
+
+ // Draw with left eye
+ Viewport {
+ id: leftViewport
+ normalizedRect: Qt.rect(0, 0, .5, 1)
+
+ CameraSelector {
+ id: leftCameraSelector
+ }
+ }
+
+ // Draw with right eye
+ Viewport {
+ id: rightViewport
+ normalizedRect: Qt.rect(.5, 0, .5, 1)
+
+ CameraSelector {
+ id: rightCameraSelector
+ }
+ }
+ }
+}