12 lines
141 B
GLSL
Executable file
12 lines
141 B
GLSL
Executable file
#version 420
|
|
|
|
out vec4 FragColor;
|
|
|
|
in vec3 TexCoords;
|
|
|
|
uniform samplerCube skybox;
|
|
|
|
void main()
|
|
{
|
|
FragColor = texture(skybox, TexCoords);
|
|
}
|