1
0
Fork 0
mirror of https://github.com/Ryujinx/Opentk.git synced 2025-03-30 17:47:02 +00:00
Opentk/Source/Examples/Data/Shaders/CubeMap_FS.glsl
thefiddler 8dcb8601a2 Normalized line endings
Hopefully this is the first and last time we have to do this.
2013-10-11 01:58:54 +02:00

9 lines
187 B
GLSL

// 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 );
}