summaryrefslogtreecommitdiffhomepage
path: root/examples/web/others/resources/shaders/glsl330/standard.vs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/web/others/resources/shaders/glsl330/standard.vs')
-rw-r--r--examples/web/others/resources/shaders/glsl330/standard.vs23
1 files changed, 0 insertions, 23 deletions
diff --git a/examples/web/others/resources/shaders/glsl330/standard.vs b/examples/web/others/resources/shaders/glsl330/standard.vs
deleted file mode 100644
index fc0a5ff..0000000
--- a/examples/web/others/resources/shaders/glsl330/standard.vs
+++ /dev/null
@@ -1,23 +0,0 @@
-#version 330
-
-in vec3 vertexPosition;
-in vec3 vertexNormal;
-in vec2 vertexTexCoord;
-in vec4 vertexColor;
-
-out vec3 fragPosition;
-out vec2 fragTexCoord;
-out vec4 fragColor;
-out 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