14/shaders/skybox.frag

12 lines
179 B
GLSL
Raw Permalink Normal View History

2023-01-13 07:55:14 +00:00
#version 330 core
out vec4 FragColor;
in vec3 TexCoords;
uniform samplerCube skybox;
void main()
{
FragColor = texture(skybox, TexCoords);
gl_FragDepth = 0.9999f;
}