[RELEASE] u22-v03

This version is submitted to U22 breau.
This commit is contained in:
2020-09-14 00:00:00 +00:00
parent 360595de37
commit 84c3a02b9a
357 changed files with 29223 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
in float v_id;
in vec2 v_uv;
in float v_alpha;
out vec4 o_color;
void main(void) {
o_color = vec4(1., 1., 1., v_alpha*.8);
}