mirror of
https://github.com/allemangD/toddcox-visualize.git
synced 2025-11-10 12:02:47 -05:00
10 lines
78 B
GLSL
10 lines
78 B
GLSL
#version 430
|
|
|
|
in vec4 col;
|
|
|
|
out vec4 color;
|
|
|
|
void main() {
|
|
color = col;
|
|
}
|