mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-28 23:09:32 -05: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);
|
|
} |