Luke I. Wilson f64af6fa29 DrawStr: made more efficient and renders newline characters
Before, DrawStr would copy all bytes into a []rune slice, and later
copy the rune slice (by accident) in the for i, v := range loop. Now,
it uses a []byte slice and iterates with for i := range slice.
2021-04-02 13:30:37 -05:00
..
2021-03-11 22:25:19 -06:00
2021-03-25 11:27:43 -05:00
2021-03-25 11:27:43 -05:00