share/hedgewars/Data/Shaders/water.fs
author unc0rr
Sat, 12 Jun 2021 20:15:42 +0200
changeset 15790 efe4e3290870
parent 12879 286e170f4f6b
permissions -rw-r--r--
Add url bot plugin based on url-bot-rs (only the difference from their repo)

#ifdef GL_ES
precision mediump float;
#endif

varying vec4 vcolor;


void main()
{
    gl_FragColor = vcolor;
}