Added some basic font rendering and texas holdem

This commit is contained in:
2021-05-03 21:32:40 -07:00
parent f559ff2092
commit 8546a2bcf8
35 changed files with 827 additions and 72 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 89 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

+1 -5
View File
@@ -8,9 +8,5 @@ out vec4 FragColor;
void main() {
vec4 color = texture(u_Text, TexCoord);
if(color.a == 0) {
FragColor = vec4(1, 1, 1, 1);
} else {
FragColor = color;
}
FragColor = color;
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB