Merge remote-tracking branch 'origin/issues/2-skybox' into issues/4-phong

This commit is contained in:
Riku Avelar 2016-11-09 20:20:36 -05:00
commit fff57b7285
2 changed files with 11 additions and 22 deletions

View File

@ -7,5 +7,5 @@ uniform sampler2D skybox;
void main()
{
//fColor = texture(skybox, texCoords);
fColor = texture(skybox, texCoords);
fColor = texture(skybox, texCoords);
}

View File

@ -1,11 +0,0 @@
#version 400 core
in vec2 texCoords;
out vec4 fColor;
uniform sampler2D skybox;
void main()
{
//fColor = texture(skybox, texCoords);
fColor = texture(skybox, texCoords);
}