X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=sdr%2Ffoo.v.glsl;h=682c177d1ca893a680501de97b61889bf4dea97b;hb=c7560762d55919077d830368a05da0ce223bc96a;hp=b2911c523abea05c651298b08949480fac3345ef;hpb=6c206da1b97ad86e095d383f4ebd3d8f332ad416;p=andemo diff --git a/sdr/foo.v.glsl b/sdr/foo.v.glsl index b2911c5..682c177 100644 --- a/sdr/foo.v.glsl +++ b/sdr/foo.v.glsl @@ -1,10 +1,10 @@ -attribute vec4 apos; -attribute vec2 atex; +attribute vec4 attr_vertex; +attribute vec2 attr_texcoord; varying vec2 texcoord; void main() { - gl_Position = apos; - texcoord = atex; + gl_Position = attr_vertex; + texcoord = attr_texcoord; }