Initial commit

This commit is contained in:
wackyideas 2024-06-13 16:59:18 +02:00
commit 93f678358d
715 changed files with 103197 additions and 0 deletions

View file

@ -0,0 +1,8 @@
uniform sampler2D sampler;
varying vec2 texcoord0;
void main()
{
gl_FragColor = texture2D(sampler, texcoord0);
}