summaryrefslogtreecommitdiffhomepage
path: root/examples/resources/shaders/glsl100/base.vs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/resources/shaders/glsl100/base.vs')
-rw-r--r--examples/resources/shaders/glsl100/base.vs26
1 files changed, 0 insertions, 26 deletions
diff --git a/examples/resources/shaders/glsl100/base.vs b/examples/resources/shaders/glsl100/base.vs
deleted file mode 100644
index e9386939..00000000
--- a/examples/resources/shaders/glsl100/base.vs
+++ /dev/null
@@ -1,26 +0,0 @@
-#version 100
-
-// Input vertex attributes
-attribute vec3 vertexPosition;
-attribute vec2 vertexTexCoord;
-attribute vec3 vertexNormal;
-attribute vec4 vertexColor;
-
-// Input uniform values
-uniform mat4 mvpMatrix;
-
-// Output vertex attributes (to fragment shader)
-varying vec2 fragTexCoord;
-varying vec4 fragColor;
-
-// NOTE: Add here your custom variables
-
-void main()
-{
- // Send vertex attributes to fragment shader
- fragTexCoord = vertexTexCoord;
- fragColor = vertexColor;
-
- // Calculate final vertex position
- gl_Position = mvpMatrix*vec4(vertexPosition, 1.0);
-} \ No newline at end of file