This commit is contained in:
Never Gude 2026-03-02 22:25:41 +01:00
parent 96f1792c09
commit 4fc1e20fdd
30 changed files with 1045 additions and 39 deletions

View file

@ -0,0 +1,5 @@
layout (location=0) in vec2 vertex_pos;
void main(){
gl_Position = vec4(vertex_pos, 0.0, 1.0);
}