share/hedgewars/Data/Shaders/water.fs
author Wuzzy <Wuzzy2@mail.ru>
Wed, 08 Aug 2018 18:36:12 +0200
changeset 13644 1b536e268519
parent 12879 286e170f4f6b
permissions -rw-r--r--
Fix frontend crash when rapidly aborting many active video encodings. Fixes bug #595

#ifdef GL_ES
precision mediump float;
#endif

varying vec4 vcolor;


void main()
{
    gl_FragColor = vcolor;
}