Having fun

This commit is contained in:
Piotrek
2021-04-12 11:58:40 +02:00
commit 93c535626a
12 changed files with 2157 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
// shader.frag
#version 450
layout(location=0) out vec4 f_color;
void main()
{
f_color = vec4(0.3, 0.2, 0.1, 1.0);
}