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,13 @@
#ifdef GL_FRAGMENT_PRECISION_HIGH
precision highp float;
#else
precision mediump float;
#endif
varying vec4 v_color;
varying vec2 v_texcoord;
uniform vec4 color;
void main() {
gl_FragColor = color;
}