Better when actually include the shaders.

This commit is contained in:
Vincent Lejeune 2014-02-26 21:53:29 +01:00
parent 61ea376ff2
commit 9ffa4681d3
2 changed files with 17 additions and 0 deletions

17
data/shaders/sky.frag Normal file
View File

@ -0,0 +1,17 @@
#version 330
uniform samplerCube tex;
uniform mat4 InvProjView;
uniform vec2 screen;
in vec2 uv;
out vec4 FragColor;
void main(void)
{
vec3 eyedir = gl_FragCoord.xyz / vec3(screen, 1.);
eyedir = 2.0 * eyedir - 1.0;
vec4 tmp = (InvProjView * vec4(eyedir, 1.));
eyedir = tmp.xyz / tmp.w;
vec4 color = texture(tex, eyedir);
FragColor = vec4(color.xyz, 1.);
}

0
data/shaders/sky.vert Normal file
View File