This commit is contained in:
Dmitri K 2016-11-09 20:17:54 -05:00
parent 487bf12fa7
commit 0ab395036b
2 changed files with 11 additions and 22 deletions

View File

@ -1,11 +1,11 @@
#version 400 core #version 400 core
in vec2 texCoords; in vec2 texCoords;
out vec4 fColor; out vec4 fColor;
uniform sampler2D skybox; uniform sampler2D skybox;
void main() void main()
{ {
//fColor = texture(skybox, texCoords); //fColor = texture(skybox, texCoords);
fColor = vec4(1.0, 0, 1.0, 1.0);// * 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);
}