Projekt-Grafika-Komputerowa/cw 6/shaders/skybox.frag
2022-02-10 16:21:08 +01:00

12 lines
152 B
GLSL

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