mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 19:45:32 +00:00
9 lines
195 B
Plaintext
9 lines
195 B
Plaintext
|
// Copyright (c) 2008 the OpenTK Team. See license.txt for legal bla
|
||
|
|
||
|
uniform samplerCube Earth;
|
||
|
varying vec3 Normal;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_FragColor = textureCube( Earth, Normal.xyz );
|
||
|
}
|