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,7 @@
out vec2 screen_pos;
layout (location=0) in vec2 vertex_pos;
void main(){
screen_pos = vertex_pos;
gl_Position = vec4(vertex_pos, 0.0, 1.0);
}