share/hedgewars/Data/Shaders/default.fs
changeset 7129 0ce4f478ea6c
child 7188 580cd247511e
equal deleted inserted replaced
7127:8e5e3fef16fc 7129:0ce4f478ea6c
       
     1 // !!!just testing!!! 
       
     2 // This is not GLSL 1.3+ compatible, as its using the compatibility profile!
       
     3 uniform sampler2D tex0;
       
     4 varying vec4 tint;
       
     5 
       
     6 void main()
       
     7 {
       
     8     gl_FragColor = texture2D(tex0, gl_TexCoord[0].st) * tint;
       
     9 }