initial commit

using rltk
This commit is contained in:
Llywelwyn 2023-07-06 16:47:07 +01:00
parent 40a2ac07be
commit d3a09df7a8
29 changed files with 3323 additions and 0 deletions

11
resources/scanlines.vs Normal file
View file

@ -0,0 +1,11 @@
#version 330 core
layout (location = 0) in vec2 aPos;
layout (location = 1) in vec2 aTexCoords;
out vec2 TexCoords;
void main()
{
TexCoords = aTexCoords;
gl_Position = vec4(aPos.x, aPos.y, 0.0, 1.0);
}