added the readme

This commit is contained in:
2026-06-08 17:07:34 -04:00
commit 6655fd2886
1001 changed files with 253651 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#version 330 core
layout (location = 0) in vec2 aPos;
layout (location = 1) in vec2 aTexCoords;
out vec2 TexCoords;
uniform vec2 normalizedCenterPos;
uniform vec2 normalizedCenterScale;
uniform float z;
uniform float rotation;
void main()
{
gl_Position = vec4(normalizedCenterPos + aPos * normalizedCenterScale,0.0f,1.0f);
TexCoords = aTexCoords;
}