Initial commit

This commit is contained in:
2021-09-03 12:56:57 -04:00
parent 76d457bcd7
commit 578fcb2bbd
154 changed files with 617096 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
#version 330
in vec2 vTextureCoord;
uniform sampler2D uTexture;
out vec4 fColor;
void main()
{
vec4 texCol = texture(uTexture, vTextureCoord);
fColor = texCol;
}