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