Review uniform name

This commit is contained in:
raysan5
2016-06-03 17:30:09 +02:00
parent 9417b9969d
commit 4dfffff19b
5 changed files with 10 additions and 10 deletions

View File

@ -8,7 +8,7 @@ varying vec4 fragColor;
// Input uniform values
uniform sampler2D texture0;
uniform vec4 fragTintColor;
uniform vec4 colDiffuse;
// NOTE: Add here your custom variables
@ -19,5 +19,5 @@ void main()
// NOTE: Implement here your fragment shader code
gl_FragColor = texelColor*fragTintColor;
gl_FragColor = texelColor*colDiffuse;
}