7 lines
74 B
GLSL
7 lines
74 B
GLSL
in vec4 v_color;
|
|
out vec4 f_color;
|
|
|
|
void main(){
|
|
f_color = v_color;
|
|
}
|