share/hedgewars/Data/Shaders/water.fs
author sheepluva
Tue, 15 May 2018 23:47:07 +0200
branchui-scaling
changeset 13387 706b34d0ce60
parent 12879 286e170f4f6b
permissions -rw-r--r--
whoops, I initialized my new var incorrectly

#ifdef GL_ES
precision mediump float;
#endif

varying vec4 vcolor;


void main()
{
    gl_FragColor = vcolor;
}