f2266b8
c905ede
1 2
3 4
5 6 7
8 9
10
11
12
#version 330 core in vec4 color; in vec2 uv; out vec4 fragColor; uniform sampler2D fontTexture; void main() { fragColor = color * texture(fontTexture, uv); }