aboutsummaryrefslogtreecommitdiffstats
path: root/skybox.frag
blob: 273fa9c37198b1191aeee7702c9a1c423bc896a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
#version 330 core

in vec3 tex_coords;
out vec4 color;

uniform samplerCube skybox;

void main()
{
	color = texture(skybox, tex_coords);
}