share/hedgewars/Data/Shaders/water.fs
author Wuzzy <Wuzzy2@mail.ru>
Sun, 30 Jun 2019 11:20:22 +0200
changeset 15227 d48eba5ac715
parent 12879 286e170f4f6b
permissions -rw-r--r--
Fix sidFPS not being properly right-aligned (again!) FPS display worked before, but it was accidentally un-done in bcecb3349948e2e00d3f2ee0c6497a24676a4efb.

#ifdef GL_ES
precision mediump float;
#endif

varying vec4 vcolor;


void main()
{
    gl_FragColor = vcolor;
}