GRK/cw 6/shaders/skybox_tex.frag

11 lines
151 B
GLSL
Raw Normal View History

2022-01-30 13:02:30 +01:00
#version 410 core
out vec4 FragColor;
in vec3 TexCoords;
uniform samplerCube skybox;
void main()
{
FragColor = texture(skybox, TexCoords);
}