Add (updated) source code for Text Rendering chapter.

This commit is contained in:
Joey de Vries
2020-04-29 13:51:53 +02:00
parent 6d1136d09a
commit ab132220a9
3 changed files with 297 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#version 330 core
in vec2 TexCoords;
out vec4 color;
uniform sampler2D text;
uniform vec3 textColor;
void main()
{
vec4 sampled = vec4(1.0, 1.0, 1.0, texture(text, TexCoords).r);
color = vec4(textColor, 1.0) * sampled;
}