s473632-grafika/grk2/cw 7/shaders/shader_skybox.frag
2024-02-08 21:52:41 +01:00

12 lines
145 B
GLSL

#version 430 core
uniform samplerCube skybox;
in vec3 texCoord;
out vec4 out_color;
void main()
{
out_color = texture(skybox,texCoord);
}