SuperTuxKart 1.5 upstream source (from official release tarball)

This commit is contained in:
Benjamin
2026-06-11 20:04:02 +02:00
commit 2957e51aaa
8551 changed files with 1801800 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
uniform vec2 center;
uniform vec2 size;
uniform vec2 texcenter;
uniform vec2 texsize;
#ifdef Explicit_Attrib_Location_Usable
layout(location=0) in vec2 Position;
layout(location=3) in vec2 Texcoord;
#else
in vec2 Position;
in vec2 Texcoord;
#endif
out vec2 uv;
void main()
{
uv = Texcoord * texsize + texcenter;
gl_Position = vec4(Position * size + center, 0., 1.) ;
}