wwwtyro / candygraph

Fast by default, flexible 2D plotting library.
Other
435 stars 11 forks source link

Fix text whitespace glitch #22

Closed flekschas closed 2 years ago

flekschas commented 2 years ago

This PR fixes a visual glitch in rendered text that contains more than one white space or line break.

In this cases, the quadBuffer and uvBuffer had an incorrect size due to an incorrect charCount. The charCount was off because only one white space and line break were removed.

This micro PR fixes the text rendering glitch.

Before:

Screen Shot 2022-01-19 at 11 23 06 AM

After:

Screen Shot 2022-01-19 at 11 23 33 AM
wwwtyro commented 2 years ago

Great catch, thank you!