goat3dgfx

annotate examples/cubemap/sdr/sky.v.glsl @ 9:25b911c7c35c

fixed some line endings fixed the cubemap2.jpg file in examples/cubemap/data which was resized improperly causing seams...
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 18 Nov 2013 04:10:19 +0200
parents 3d96734fd477
children
rev   line source
nuclear@9 1 varying vec3 norm;
nuclear@9 2
nuclear@9 3 void main()
nuclear@9 4 {
nuclear@9 5 gl_Position = ftransform();
nuclear@9 6 norm = gl_Vertex.xyz;
nuclear@9 7 }