summaryrefslogtreecommitdiffhomepage
path: root/examples/web/others/resources/shaders/glsl100/standard.vs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/web/others/resources/shaders/glsl100/standard.vs')
-rw-r--r--examples/web/others/resources/shaders/glsl100/standard.vs23
1 files changed, 0 insertions, 23 deletions
diff --git a/examples/web/others/resources/shaders/glsl100/standard.vs b/examples/web/others/resources/shaders/glsl100/standard.vs
deleted file mode 100644
index 49c5a3e..0000000
--- a/examples/web/others/resources/shaders/glsl100/standard.vs
+++ /dev/null
@@ -1,23 +0,0 @@
-#version 100
-
-attribute vec3 vertexPosition;
-attribute vec3 vertexNormal;
-attribute vec2 vertexTexCoord;
-attribute vec4 vertexColor;
-
-varying vec3 fragPosition;
-varying vec2 fragTexCoord;
-varying vec4 fragColor;
-varying vec3 fragNormal;
-
-uniform mat4 mvpMatrix;
-
-void main()
-{
- fragPosition = vertexPosition;
- fragTexCoord = vertexTexCoord;
- fragColor = vertexColor;
- fragNormal = vertexNormal;
-
- gl_Position = mvpMatrix*vec4(vertexPosition, 1.0);
-} \ No newline at end of file