feat():initial version

This commit is contained in:
2026-04-17 18:22:45 +08:00
commit ebc372aa44
2824 changed files with 445824 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
uniform sampler2D u_sam_tex;
uniform float u_flt_inv_alpha;
varying vec2 v_v2_txc;
varying float v_flt_alpha;
void main()
{
gl_FragColor = texture2D(u_sam_tex, v_v2_txc);
gl_FragColor.a *= v_flt_alpha;
gl_FragColor.a *= 1.0-u_flt_inv_alpha;
}