wilhelm_renderer 0.7.1

A minimalist 2D data rendering engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
#version 330 core

in vec2 TexCoord;
out vec4 FragColor;

// texture samples
uniform sampler2D texture1;

void main() {
    FragColor = texture(texture1, TexCoord);
}