This commit is contained in:
Maurice Grönwoldt 2020-06-13 10:56:20 +02:00
commit 26a2935e1c
52 changed files with 1513 additions and 107 deletions

View file

@ -0,0 +1,8 @@
#version 330 core
in vec4 newColor;
out vec4 fragColor;
void main()
{
fragColor = newColor;
}

View file

@ -0,0 +1,10 @@
#version 330 core
in vec4 position;
uniform vec4 color = vec4(1f, 1f, 1f, 1f);
out vec4 newColor;
void main()
{
gl_Position = position;
newColor = color;
}

BIN
Source/Resources/arvo.ttf Normal file

Binary file not shown.

BIN
Source/Resources/lcd.ttf Normal file

Binary file not shown.