mirror of
https://github.com/13hannes11/LU_opengl_solarsystem_visualization.git
synced 2024-09-04 01:11:01 +02:00
13 lines
148 B
GLSL
13 lines
148 B
GLSL
#version 330
|
|
|
|
in vec3 texCoord;
|
|
|
|
out vec4 outputColor;
|
|
|
|
uniform samplerCube cubemap;
|
|
|
|
void main()
|
|
{
|
|
outputColor = texture(cubemap, texCoord);
|
|
}
|