aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data/shared/shaders/wave.vert
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/scenegraph_lancelot/data/shared/shaders/wave.vert')
-rw-r--r--tests/manual/scenegraph_lancelot/data/shared/shaders/wave.vert18
1 files changed, 12 insertions, 6 deletions
diff --git a/tests/manual/scenegraph_lancelot/data/shared/shaders/wave.vert b/tests/manual/scenegraph_lancelot/data/shared/shaders/wave.vert
index 38e523c06b..38f6173773 100644
--- a/tests/manual/scenegraph_lancelot/data/shared/shaders/wave.vert
+++ b/tests/manual/scenegraph_lancelot/data/shared/shaders/wave.vert
@@ -1,12 +1,18 @@
-uniform highp mat4 qt_Matrix;
-attribute highp vec4 qt_Vertex;
-attribute highp vec2 qt_MultiTexCoord0;
-varying highp vec2 qt_TexCoord0;
+#version 440
+
+layout(location = 0) in vec4 qt_Vertex;
+layout(location = 1) in vec2 qt_MultiTexCoord0;
+
+layout(location = 0) out vec2 qt_TexCoord0;
+
+layout(std140, binding = 0) uniform buf {
+ mat4 qt_Matrix;
+} ubuf;
void main() {
- highp vec4 pos = qt_Vertex;
+ vec4 pos = qt_Vertex;
pos.x += sin(qt_Vertex.y * 0.02) * 20.;
pos.y += sin(qt_Vertex.x * 0.02) * 20.;
- gl_Position = qt_Matrix * pos;
+ gl_Position = ubuf.qt_Matrix * pos;
qt_TexCoord0 = qt_MultiTexCoord0;
}