summaryrefslogtreecommitdiffhomepage
path: root/shaders/glsl100/template.fs
diff options
context:
space:
mode:
Diffstat (limited to 'shaders/glsl100/template.fs')
-rw-r--r--shaders/glsl100/template.fs4
1 files changed, 2 insertions, 2 deletions
diff --git a/shaders/glsl100/template.fs b/shaders/glsl100/template.fs
index a3942890..c1126423 100644
--- a/shaders/glsl100/template.fs
+++ b/shaders/glsl100/template.fs
@@ -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;
} \ No newline at end of file