This commit is contained in:
2026-05-06 23:44:13 +02:00
parent a5f787d80f
commit fd7038b853
1574 changed files with 365439 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#version 310 es
precision highp float;
layout(location = 0) in vec4 in_color;
layout(location = 0) out vec4 out_color;
void main()
{
out_color = in_color;
}