X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=mandelwow.vert;h=0e67eda0dbe0978125073f164f24143c9409d779;hb=0f22f5d5ef2021900d86402703b927006bde1935;hp=9c3e5f83aad5318a368decb521a8a77fc017e3e4;hpb=1124bb2dc1b8381bf4bfc437ab1689ec1b30d99b;p=mandelwow.git diff --git a/mandelwow.vert b/mandelwow.vert index 9c3e5f8..0e67eda 100644 --- a/mandelwow.vert +++ b/mandelwow.vert @@ -1,11 +1,11 @@ -#version 140 +#version 100 uniform mat4 perspective; uniform mat4 view; uniform mat4 model; uniform vec2 z0; -in vec3 position; -out vec2 c; -out vec2 z; +attribute mediump vec3 position; +varying mediump vec2 c; +varying mediump vec2 z; void main() { mat4 modelview = view * model;