share/hedgewars/Data/Shaders/water.fs
author unC0Rr
Thu, 22 Oct 2020 12:33:35 +0200
branch1.0.0
changeset 15865 6b10b0cdbeab
parent 12879 286e170f4f6b
permissions -rw-r--r--
Mark global variables in implementation section static

#ifdef GL_ES
precision mediump float;
#endif

varying vec4 vcolor;


void main()
{
    gl_FragColor = vcolor;
}