summaryrefslogtreecommitdiffstats
path: root/src/render/shaders/gl3/skybox.frag
blob: 99c8f111b817ba519b1561a70fccb288a36c6cd9 (plain)
1
2
3
4
5
6
7
8
9
10
#version 140

in vec3 texCoord0;
out vec4 fragColor;
uniform samplerCube skyboxTexture;

void main()
{
    fragColor = texture(skyboxTexture, texCoord0);
}