goat3dgfx

view examples/cubemap/sdr/sky.p.glsl @ 5:18879c956eb1

- skycube example - added fatal_log - changed the dataset to keep the whole path while searching for data files
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 17 Nov 2013 03:22:40 +0200
parents
children 3d96734fd477
line source
1 uniform samplerCube cubemap;
3 varying vec3 norm;
5 void main()
6 {
7 gl_FragColor = textureCube(cubemap, norm);
8 }