mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-08 06:14:08 -05:00
8 lines
137 B
GLSL
8 lines
137 B
GLSL
#version 450
|
|
|
|
layout(location=0) in vec3 v_color;
|
|
layout(location=0) out vec4 f_color;
|
|
|
|
void main() {
|
|
f_color = vec4(v_color, 1.0);
|
|
} |