summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/exampleresources/assets/gltf/wine/wine1VS.glsl
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qt3d/exampleresources/assets/gltf/wine/wine1VS.glsl')
-rw-r--r--examples/qt3d/exampleresources/assets/gltf/wine/wine1VS.glsl12
1 files changed, 12 insertions, 0 deletions
diff --git a/examples/qt3d/exampleresources/assets/gltf/wine/wine1VS.glsl b/examples/qt3d/exampleresources/assets/gltf/wine/wine1VS.glsl
new file mode 100644
index 000000000..9e3592280
--- /dev/null
+++ b/examples/qt3d/exampleresources/assets/gltf/wine/wine1VS.glsl
@@ -0,0 +1,12 @@
+precision highp float;
+attribute vec3 a_position;
+attribute vec3 a_normal;
+varying vec3 v_normal;
+uniform mat3 u_normalMatrix;
+uniform mat4 u_modelViewMatrix;
+uniform mat4 u_projectionMatrix;
+void main(void) {
+vec4 pos = u_modelViewMatrix * vec4(a_position,1.0);
+v_normal = u_normalMatrix * a_normal;
+gl_Position = u_projectionMatrix * pos;
+}