Corrections fichiers pour avoir la version x86 fonctionnelle

This commit is contained in:
MarcEricMartel
2023-09-30 18:33:23 -04:00
parent 09dd3d332f
commit 8b3baa9063
694 changed files with 120490 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
uniform sampler2D texture;
uniform float blink_alpha;
void main()
{
vec4 pixel = gl_Color;
pixel.a = blink_alpha;
gl_FragColor = pixel;
}