feat(clusterApp): initial version run in Ubuntu.

change fb to DRM
This commit is contained in:
2026-04-17 18:49:03 +08:00
parent 2774b26f8b
commit 0108dbb67f
2827 changed files with 859 additions and 19860 deletions

View File

@@ -0,0 +1,12 @@
precision mediump float;
uniform sampler2D u_sam_tex;
uniform vec3 u_v3_clr;
uniform float u_flt_inv_alpha;
varying vec2 v_v2_txc;
#define offset (1.0/512)
void main()
{
float alpha = texture2D(u_sam_tex, v_v2_txc).a;
gl_FragColor = vec4(u_v3_clr.r, u_v3_clr.g, u_v3_clr.b, (1.0-u_flt_inv_alpha)*alpha);
}