text almost works

This commit is contained in:
2021-08-15 23:29:25 +02:00
parent 40aa7f635e
commit fb045f210a
10 changed files with 30 additions and 25 deletions

View File

@@ -21,6 +21,5 @@ layout(location = 0) in vec2 tex_coords;
layout(location = 0) out vec4 out_color;
void main() {
out_color = vec4(1., 1., 1., 1.);
// out_color = vec4(1., 1., 1., texture(diffuse_tex, tex_coords).r);
out_color = vec4(1., 1., 1., texture(diffuse_tex, tex_coords).r);
}