#version 330 core in vec3 tex_coords; out vec4 frag_color; uniform samplerCube skybox; void main(void) { frag_color = texture(skybox, tex_coords); }