mirror of
https://github.com/3b1b/manim.git
synced 2025-08-21 05:44:04 +00:00
16 lines
No EOL
226 B
GLSL
16 lines
No EOL
226 B
GLSL
#version 330
|
|
|
|
in vec2 point;
|
|
in vec4 color;
|
|
in float fill_type;
|
|
|
|
out vec2 bp; // Bezier control point
|
|
out vec4 v_color;
|
|
out float v_fill_type;
|
|
|
|
|
|
void main(){
|
|
bp = point;
|
|
v_color = color;
|
|
v_fill_type = fill_type;
|
|
} |