System info & network

This commit is contained in:
2023-09-26 19:40:16 +02:00
commit 504ba77654
89 changed files with 39577 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#version 430 core
layout (location = 0) in vec2 position;
layout (location = 1) in vec2 uv;
out vec2 frag_uv;
void main()
{
frag_uv = uv;
gl_Position = vec4(position, 0.0, 1.0);
}