Commit initial

This commit is contained in:
2020-04-17 18:11:57 +02:00
commit 6b097fa6a0
54 changed files with 4084 additions and 0 deletions

View File

@ -0,0 +1,9 @@
uniform mat4 modelview;
uniform mat4 projection;
void main()
{
gl_Position = projection * modelview * gl_Vertex;
gl_TexCoord[0] = gl_MultiTexCoord0;
}

View File

@ -0,0 +1,6 @@
uniform sampler2D texture;
void main()
{
gl_FragColor = texture2D(texture, gl_TexCoord[0]);
}