493afb05e6
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>
9 lines
206 B
GLSL
9 lines
206 B
GLSL
#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);
|
|
}
|