mirror of
https://github.com/allemangD/toddcox-visualize.git
synced 2026-01-24 06:39:20 -05:00
10 lines
78 B
GLSL
10 lines
78 B
GLSL
#version 430
|
|
|
|
in vec4 col;
|
|
|
|
out vec4 color;
|
|
|
|
void main() {
|
|
color = col;
|
|
}
|