summaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorRay <[email protected]>2017-10-23 22:41:06 +0200
committerRay <[email protected]>2017-10-23 22:41:06 +0200
commit9668f546d3d97d6ee364c5322cf3d64a7998cf55 (patch)
tree512178cecdb99ba7c80f7184aa98269b3135d801 /examples
parentbd2e3b2a905b6d512d1188f92fec60636d24a813 (diff)
downloadraylib-9668f546d3d97d6ee364c5322cf3d64a7998cf55.tar.gz
raylib-9668f546d3d97d6ee364c5322cf3d64a7998cf55.zip
Example shader correction
Diffstat (limited to 'examples')
-rw-r--r--examples/others/resources/shaders/glsl100/standard.vs4
-rw-r--r--examples/others/resources/shaders/glsl330/standard.vs4
2 files changed, 4 insertions, 4 deletions
diff --git a/examples/others/resources/shaders/glsl100/standard.vs b/examples/others/resources/shaders/glsl100/standard.vs
index 49c5a3eb..2b958938 100644
--- a/examples/others/resources/shaders/glsl100/standard.vs
+++ b/examples/others/resources/shaders/glsl100/standard.vs
@@ -10,7 +10,7 @@ varying vec2 fragTexCoord;
varying vec4 fragColor;
varying vec3 fragNormal;
-uniform mat4 mvpMatrix;
+uniform mat4 mvp;
void main()
{
@@ -19,5 +19,5 @@ void main()
fragColor = vertexColor;
fragNormal = vertexNormal;
- gl_Position = mvpMatrix*vec4(vertexPosition, 1.0);
+ gl_Position = mvp*vec4(vertexPosition, 1.0);
} \ No newline at end of file
diff --git a/examples/others/resources/shaders/glsl330/standard.vs b/examples/others/resources/shaders/glsl330/standard.vs
index fc0a5ff4..7fbdbf5e 100644
--- a/examples/others/resources/shaders/glsl330/standard.vs
+++ b/examples/others/resources/shaders/glsl330/standard.vs
@@ -10,7 +10,7 @@ out vec2 fragTexCoord;
out vec4 fragColor;
out vec3 fragNormal;
-uniform mat4 mvpMatrix;
+uniform mat4 mvp;
void main()
{
@@ -19,5 +19,5 @@ void main()
fragColor = vertexColor;
fragNormal = vertexNormal;
- gl_Position = mvpMatrix*vec4(vertexPosition, 1.0);
+ gl_Position = mvp*vec4(vertexPosition, 1.0);
} \ No newline at end of file