feat(all): 迁移扩展相关功能

This commit is contained in:
plum
2026-04-08 15:34:43 +08:00
parent ad2dd979eb
commit d7c0dba569
278 changed files with 25207 additions and 62 deletions
@@ -0,0 +1,13 @@
precision highp float;
precision highp int;
uniform sampler2D tInput;
in vec2 coord;
out vec4 fragColor;
void main() {
vec4 color = texture(tInput, coord);
fragColor = vec4(color.x, color.y, color.z, 1.);
}