Subversion Repositories AndroidProjects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1452 chris 1
// Copyright (c) 2008 the OpenTK Team. See license.txt for legal bla
2
 
3
uniform samplerCube Earth;
4
varying vec3 Normal;
5
 
6
void main()
7
{
8
  gl_FragColor = textureCube( Earth, Normal.xyz );
9
}