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.vs Normal file
View File

@@ -0,0 +1,7 @@
#version 330 core
in vec2 positions;
void main(){
gl_Position = vec4(positions, 0.0, 1.0);
}