examples: add render-pass-ext exmaple

This commit is contained in:
YaoBing Xiao 2026-03-23 21:09:13 +08:00
parent 53630a0a60
commit 393f96274a
14 changed files with 705 additions and 0 deletions

View file

@ -0,0 +1,11 @@
#ifdef GL_FRAGMENT_PRECISION_HIGH
precision highp float;
#else
precision mediump float;
#endif
varying vec3 v_color;
void main() {
gl_FragColor = vec4(v_color, 1.0);
}