aboutsummaryrefslogtreecommitdiffstats
path: root/src/runtimerender/res/rhishaders/skyboxcube.frag
blob: 54377c64682a4bab279ed13cfd427b61d92a01a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#version 440

layout(location = 0) out vec4 fragOutput;

layout(location = 0) in vec3 tex_coords;

layout(binding = 1) uniform samplerCube tex;

void main()
{
    fragOutput = texture(tex, tex_coords);
}