summaryrefslogtreecommitdiffstats
path: root/tests/manual/planets-qml/shaders/gl3/sun.vert
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/planets-qml/shaders/gl3/sun.vert')
-rw-r--r--tests/manual/planets-qml/shaders/gl3/sun.vert23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/manual/planets-qml/shaders/gl3/sun.vert b/tests/manual/planets-qml/shaders/gl3/sun.vert
new file mode 100644
index 000000000..0734c1c1a
--- /dev/null
+++ b/tests/manual/planets-qml/shaders/gl3/sun.vert
@@ -0,0 +1,23 @@
+// Copyright (C) 2014 Klaralvdalens Datakonsult AB (KDAB).
+// Copyright (C) 2017 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+#version 150 core
+
+in vec3 vertexPosition;
+in vec2 vertexTexCoord;
+
+out vec3 position;
+out vec2 texCoord;
+
+uniform mat4 modelView;
+uniform mat4 mvp;
+
+uniform float texCoordScale;
+
+void main()
+{
+ texCoord = vertexTexCoord * texCoordScale;
+ position = vec3(modelView * vec4(vertexPosition, 1.0));
+ gl_Position = mvp * vec4(vertexPosition, 1.0);
+}