Fix refelctivity + refraction
[opengl.git] / skyboxfrag.glsl
1 #version 330
2
3 in vec3 texCoords;
4 out vec4 fragColor;
5
6 uniform samplerCube skybox;
7
8 void main() {
9         fragColor = texture(skybox, texCoords);
10 }