mirror of
https://github.com/3b1b/manim.git
synced 2025-07-28 04:23:16 +08:00
8 lines
94 B
GLSL
8 lines
94 B
GLSL
#version 330
|
|
|
|
in vec4 v_color;
|
|
out vec4 frag_color;
|
|
|
|
void main() {
|
|
frag_color = v_color;
|
|
} |