19 lines
339 B
Forth
19 lines
339 B
Forth
|
#version 100
|
||
|
|
||
|
precision mediump float;
|
||
|
|
||
|
varying vec2 fragTexCoord;
|
||
|
|
||
|
uniform sampler2D texture0;
|
||
|
uniform vec4 tintColor;
|
||
|
|
||
|
// NOTE: Add here your custom variables
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
vec4 texelColor = texture2D(texture0, fragTexCoord);
|
||
|
|
||
|
// NOTE: Implement here your fragment shader code
|
||
|
|
||
|
gl_FragColor = texelColor*tintColor;
|
||
|
}
|