mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-07 12:10:52 -06:00
8 lines
114 B
GLSL
8 lines
114 B
GLSL
#version 400 core
|
|
|
|
in vec3 vPosition;
|
|
out vec4 fragColor;
|
|
|
|
void main() {
|
|
fragColor = vec4(vPosition+0.5, 1.0);
|
|
} |