share/hedgewars/Data/Shaders/default.fs
author Wolfgang Steffens <WolfgangSteff@gmail.com>
Fri, 25 May 2012 09:00:54 +0200
changeset 7129 0ce4f478ea6c
child 7188 580cd247511e
permissions -rw-r--r--
initial GLSL1.2 test version

// !!!just testing!!! 
// This is not GLSL 1.3+ compatible, as its using the compatibility profile!
uniform sampler2D tex0;
varying vec4 tint;

void main()
{
    gl_FragColor = texture2D(tex0, gl_TexCoord[0].st) * tint;
}