comparison README.md @ 13:074bde2db09a

printing text with custom font but incorrect letters
author Dennis C. M. <dennis@denniscm.com>
date Sat, 24 Jun 2023 13:39:21 +0100
parents 035d3880da04
children 8a5a7aee69ce
comparison
equal deleted inserted replaced
12:9ba546527bc2 13:074bde2db09a
1 # algo-animator 1 # algo-animator
2 2
3 ## Compile and run 3 ## Compile and run
4 ```bash 4 ```bash
5 gcc main.c utils.c -lglut -lGL -lGLU -lm && ./a.out 5 gcc main.c -lglut -lGL -lGLU -lm -I/usr/local/include/freetype2 -L/usr/local/lib -lfreetype
6 ./a.out
6 ``` 7 ```