share/hedgewars/Data/Shaders/default.fs
author nemo
Fri, 04 Sep 2015 08:14:12 -0400
changeset 11074 722567479fab
parent 8334 abb48dd39e26
child 11317 62287d4044e7
permissions -rw-r--r--
fix a couple of typos

uniform sampler2D tex0;
uniform vec4 tint;
uniform bool enableTexture;

varying vec2 tex;


void main()
{
    if(enableTexture){
        gl_FragColor = texture2D(tex0, tex) * tint;
    }else{
        gl_FragColor = tint;
    }
}