Initial commit

This is working repository now. I had to clean this up due to
my f_ups, that made this simple repo around 200MB large.

Signed-off-by: Piotr Krygier <piotrkrygier@everyonecancode@xyz>
This commit is contained in:
Piotr Krygier
2022-06-28 09:54:41 +02:00
committed by Piotr Krygier
commit 493afb05e6
56 changed files with 5574 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#version 450
layout(set = 0, binding = 0) uniform sampler2D overlay_tex;
layout(location = 0) in vec2 uv;
layout(location = 0) out vec4 out_color;
void main() {
out_color = texture(overlay_tex, uv);
}