Added missing files

This commit is contained in:
Tom
2021-06-10 11:34:24 +02:00
parent 32b11107a3
commit 3b9db30488
25 changed files with 247 additions and 8 deletions

View File

@@ -0,0 +1,20 @@
#shader vertex
#version 330 core
layout(location = 0) in vec4 position;
void main() {
gl_Position = position;
};
#shader fragment
#version 330 core
layout(location = 0) out vec4 color;
uniform vec4 u_Color;
void main() {
color = u_Color;
};