mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-23 04:30:15 -06:00
8 lines
90 B
GLSL
8 lines
90 B
GLSL
#version 330
|
|
|
|
in vec4 color;
|
|
out vec4 outputColor;
|
|
|
|
void main() {
|
|
outputColor = color;
|
|
} |