share/hedgewars/Data/Shaders/water.fs
author Wuzzy <Wuzzy2@mail.ru>
Thu, 10 Jan 2019 00:33:05 +0100
changeset 14539 c38dd843763f
parent 12884 286e170f4f6b
permissions -rw-r--r--
Fix double water splash if flying saucer drowns (bug #681)

#ifdef GL_ES
precision mediump float;
#endif

varying vec4 vcolor;


void main()
{
    gl_FragColor = vcolor;
}