base gameoflife graph

This commit is contained in:
2023-05-29 23:17:14 +02:00
parent b21675e7c3
commit 763df573d8
5 changed files with 150 additions and 1 deletions

7
shader.fs Normal file
View File

@@ -0,0 +1,7 @@
#version 330 core
out vec4 outColor;
void main(){
outColor = vec4(1.0, 1.0, 1.0, 1.0);
}