stk-code_catmod/data/shaders/sky.frag

15 lines
367 B
GLSL
Raw Normal View History

uniform samplerCube tex;
out vec4 FragColor;
void main(void)
{
2015-01-15 14:50:19 -05:00
vec3 eyedir = vec3(gl_FragCoord.xy / screen, 1.);
eyedir = 2.0 * eyedir - 1.0;
2014-10-01 20:53:31 -04:00
vec4 tmp = (InverseProjectionMatrix * vec4(eyedir, 1.));
tmp /= tmp.w;
eyedir = (InverseViewMatrix * vec4(tmp.xyz, 0.)).xyz;
vec4 color = texture(tex, eyedir);
FragColor = vec4(color.xyz, 1.);
}