share/hedgewars/Data/Shaders/water.fs
author Wuzzy <Wuzzy2@mail.ru>
Fri, 04 May 2018 14:38:01 +0200
changeset 13378 c53530142442
parent 12879 286e170f4f6b
permissions -rw-r--r--
Lua API: Add EnableSwitchHog to manually enable hog switching

#ifdef GL_ES
precision mediump float;
#endif

varying vec4 vcolor;


void main()
{
    gl_FragColor = vcolor;
}