share/hedgewars/Data/Shaders/default.fs
author nemo
Fri, 30 Oct 2015 16:04:51 -0400
changeset 11262 6d5505bff3f3
parent 8334 abb48dd39e26
child 11317 62287d4044e7
permissions -rw-r--r--
refocus camera on roping hog. totally untested.

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;
    }
}