aboutsummaryrefslogtreecommitdiff
path: root/shaders/glsl100/base.vs
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2016-05-18 12:04:27 +0200
committerraysan5 <raysan5@gmail.com>2016-05-18 12:04:27 +0200
commitbc08271da3e68d2880f4ef712c13e88b99f1021d (patch)
treea2b3fb728de4984a12b97728491205613e3c951b /shaders/glsl100/base.vs
parent0e29aa2951fe11e9d0fabec2182ed6309fce37bb (diff)
downloadraylib-bc08271da3e68d2880f4ef712c13e88b99f1021d.tar.gz
raylib-bc08271da3e68d2880f4ef712c13e88b99f1021d.zip
Updated shaders with comments
Diffstat (limited to 'shaders/glsl100/base.vs')
-rw-r--r--shaders/glsl100/base.vs14
1 files changed, 10 insertions, 4 deletions
diff --git a/shaders/glsl100/base.vs b/shaders/glsl100/base.vs
index 9f339382..e9386939 100644
--- a/shaders/glsl100/base.vs
+++ b/shaders/glsl100/base.vs
@@ -1,20 +1,26 @@
#version 100
+// Input vertex attributes
attribute vec3 vertexPosition;
attribute vec2 vertexTexCoord;
attribute vec3 vertexNormal;
+attribute vec4 vertexColor;
-varying vec2 fragTexCoord;
-
+// 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()
{
- vec3 normal = vertexNormal;
-
+ // 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