share/hedgewars/Data/Shaders/water.vs
author Wuzzy <almikes@aol.com>
Thu, 21 Sep 2017 16:53:07 +0200
changeset 12473 faed28f815c7
parent 11795 2028bd2a6c5b
child 12879 286e170f4f6b
permissions -rw-r--r--
Simplify error messages in record play page and fix poor grammar.

precision mediump float;

attribute vec2 vertex;
attribute vec4 color;

varying vec4 vcolor;

uniform mat4 mvp;

void main()
{
    vec4 p = mvp * vec4(vertex, 0.0, 1.0);
    gl_Position = p;
    vcolor = color;
}