initial commit

This commit is contained in:
MihailRis
2025-05-07 20:42:50 +03:00
parent 27b194816b
commit fc46b7c434
36 changed files with 754 additions and 70 deletions
+11
View File
@@ -0,0 +1,11 @@
in vec2 a_texCoord;
uniform sampler2D u_texture0;
void main() {
vec4 tex_color = texture(u_texture0, a_texCoord);
if (tex_color.a < 0.5) {
discard;
}
// depth will be written anyway
}