aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/nodetypes_ng/wobble_legacy_gl.vert
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/nodetypes_ng/wobble_legacy_gl.vert')
-rw-r--r--tests/manual/nodetypes_ng/wobble_legacy_gl.vert8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/manual/nodetypes_ng/wobble_legacy_gl.vert b/tests/manual/nodetypes_ng/wobble_legacy_gl.vert
new file mode 100644
index 0000000000..b2f33ab402
--- /dev/null
+++ b/tests/manual/nodetypes_ng/wobble_legacy_gl.vert
@@ -0,0 +1,8 @@
+uniform highp mat4 qt_Matrix;
+attribute highp vec4 qt_Vertex;
+attribute highp vec2 qt_MultiTexCoord0;
+varying highp vec2 qt_TexCoord0;
+void main() {
+ qt_TexCoord0 = qt_MultiTexCoord0;
+ gl_Position = qt_Matrix * qt_Vertex;
+}