rgx 0.9.0

A 2D graphics toolkit for rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
uniform sampler2D framebuffer;

in  vec2 f_uv;
out vec4 fragColor;

void main() {
	fragColor = texture(
		framebuffer,
		vec2(f_uv.s, f_uv.t)
	);
}