You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
234 B
10 lines
234 B
#version 330 core
|
|
in vec2 TexCoords;
|
|
out vec4 FragColor;
|
|
uniform sampler2D text;
|
|
uniform vec3 textColor;
|
|
void main()
|
|
{
|
|
vec4 sampled = vec4(1.0, 1.0, 1.0, texture(text, TexCoords).r);
|
|
FragColor = vec4(textColor, 1.00) * sampled;
|
|
}
|