From c82207d54c76d8b66be010bfa63e45f9507891fa Mon Sep 17 00:00:00 2001 From: Laszlo Agocs Date: Wed, 4 Mar 2015 16:05:02 +0100 Subject: Move the examples under a qt3d subdir Modules cannot have their examples in the top-level examples directory because in the pre-built packages all modules' examples are merged together. Change-Id: I80fdbb8f1ec6f3d8fd793e4d856e705000237127 Reviewed-by: Paul Lemire --- .../exampleresources/assets/gltf/wine/wine0VS.glsl | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 examples/qt3d/exampleresources/assets/gltf/wine/wine0VS.glsl (limited to 'examples/qt3d/exampleresources/assets/gltf/wine/wine0VS.glsl') diff --git a/examples/qt3d/exampleresources/assets/gltf/wine/wine0VS.glsl b/examples/qt3d/exampleresources/assets/gltf/wine/wine0VS.glsl new file mode 100644 index 000000000..f03b74739 --- /dev/null +++ b/examples/qt3d/exampleresources/assets/gltf/wine/wine0VS.glsl @@ -0,0 +1,18 @@ +#version 150 +//precision highp float; + +in vec3 a_position; +in vec3 a_normal; +out vec3 v_normal; +uniform mat3 u_normalMatrix; +uniform mat4 u_modelViewMatrix; +uniform mat4 u_projectionMatrix; +in vec2 a_texcoord0; +out vec2 v_texcoord0; + +void main(void) { + vec4 pos = u_modelViewMatrix * vec4(a_position,1.0); + v_normal = normalize(u_normalMatrix * a_normal); + v_texcoord0 = a_texcoord0; + gl_Position = u_projectionMatrix * pos; +} -- cgit v1.2.3