|
@@ -8,14 +8,14 @@ varying vec4 fragColor;
|
|
|
|
|
|
// Input uniform values
|
|
// Input uniform values
|
|
uniform sampler2D texture0;
|
|
uniform sampler2D texture0;
|
|
-uniform vec4 fragTintColor;
|
|
|
|
|
|
+uniform vec4 colDiffuse;
|
|
|
|
|
|
// NOTE: Add here your custom variables
|
|
// NOTE: Add here your custom variables
|
|
|
|
|
|
void main()
|
|
void main()
|
|
{
|
|
{
|
|
// Texel color fetching from texture sampler
|
|
// Texel color fetching from texture sampler
|
|
- vec4 texelColor = texture2D(texture0, fragTexCoord)*fragTintColor*fragColor;
|
|
|
|
|
|
+ vec4 texelColor = texture2D(texture0, fragTexCoord)*colDiffuse*fragColor;
|
|
|
|
|
|
// Convert texel color to grayscale using NTSC conversion weights
|
|
// Convert texel color to grayscale using NTSC conversion weights
|
|
float gray = dot(texelColor.rgb, vec3(0.299, 0.587, 0.114));
|
|
float gray = dot(texelColor.rgb, vec3(0.299, 0.587, 0.114));
|