sockscape/resources/client/shaders/test.frag

9 lines
152 B
GLSL
Raw Normal View History

2018-08-16 21:39:13 +00:00
#version 330 core
in vec2 texCoords;
out vec4 fragColor;
2018-08-29 21:33:28 +00:00
uniform sampler2D fontBitmap;
2018-08-16 21:39:13 +00:00
void main() {
2018-08-29 21:33:28 +00:00
fragColor = texture(fontBitmap, texCoords);
2018-08-16 21:39:13 +00:00
}