Putting it all together and testing it.

This commit is contained in:
2021-05-05 09:24:36 -07:00
parent 0d997bc08b
commit adc064b9e4
14 changed files with 201 additions and 172 deletions

View File

@ -8,6 +8,5 @@ out vec4 FragColor;
void main() {
vec4 color = texture(u_Text, TexCoord);
FragColor = color + vec4(0.25, 0.25, 0.25, 1);
// FragColor = vec4(1, 0, 0, 1);
FragColor = color + vec4(0.1, 0.1, 0.1, 1);
}