9 lines
No EOL
152 B
GLSL
9 lines
No EOL
152 B
GLSL
#version 330 core
|
|
in vec2 texCoords;
|
|
out vec4 fragColor;
|
|
|
|
uniform sampler2D fontBitmap;
|
|
|
|
void main() {
|
|
fragColor = texture(fontBitmap, texCoords);
|
|
} |