mini_gl_fb 0.9.0

Quick and easy window creation, input, and high speed bitmap rendering
Documentation
1
2
3
4
5
6
7
8
9
10
11
#version 330 core

in vec2 v_uv;

out vec4 frag_color;

uniform sampler2D u_buffer;

void main() {
    frag_color = texture(u_buffer, v_uv);
}