share/hedgewars/Data/Shaders/default.fs
author nemo
Thu, 30 Jul 2015 16:28:35 -0400
changeset 11030 2ef7700c25e9
parent 8334 abb48dd39e26
child 11317 62287d4044e7
permissions -rw-r--r--
darken and blur the cupcake a bit so that people stop trying to teleport on it

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