renamed gles2 components to gles

This commit is contained in:
William McKinnon 2025-10-27 00:49:39 -04:00
parent 879243e370
commit 00c96e3ac0
19 changed files with 304 additions and 303 deletions

View file

@ -0,0 +1,15 @@
#extension GL_OES_EGL_image_external : require
#ifdef GL_FRAGMENT_PRECISION_HIGH
precision highp float;
#else
precision mediump float;
#endif
varying vec2 v_texcoord;
uniform samplerExternalOES texture0;
uniform float alpha;
void main() {
gl_FragColor = texture2D(texture0, v_texcoord) * alpha;
}