GRK_Room/cw 9/shaders/shader_skybox.frag

12 lines
142 B
GLSL
Raw Normal View History

2023-01-14 16:54:20 +01:00
#version 430 core
uniform samplerCube skybox;
in vec3 texCoord;
out vec4 out_color;
void main()
{
out_color = texture(skybox,texCoord);
}