gui_64 0.1.0

This crate is all gooey...
Documentation
1
2
3
4
5
6
7
8
9
10
#version 460
in vec2 tex_coords;

out vec4 frag_color;

uniform sampler2D tex;

void main() {
	frag_color = texture(tex, tex_coords);
}