X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=mandelwow.vert;fp=mandelwow.vert;h=0000000000000000000000000000000000000000;hb=5b769a11c534636ff7ffcdcb1010fd0d18f85c84;hp=0e67eda0dbe0978125073f164f24143c9409d779;hpb=c616910b42c0511d231b1913859bc62ecf4d6652;p=mandelwow.git diff --git a/mandelwow.vert b/mandelwow.vert deleted file mode 100644 index 0e67eda..0000000 --- a/mandelwow.vert +++ /dev/null @@ -1,15 +0,0 @@ -#version 100 -uniform mat4 perspective; -uniform mat4 view; -uniform mat4 model; -uniform vec2 z0; -attribute mediump vec3 position; -varying mediump vec2 c; -varying mediump vec2 z; - -void main() { - mat4 modelview = view * model; - gl_Position = perspective * modelview * vec4(position, 1.0); - c = vec2(position.x, position.y); - z = vec2(z0.x, z0.y); -}