msdfgen icon indicating copy to clipboard operation
msdfgen copied to clipboard

Multi-channel signed distance field generator

Results 6 msdfgen issues
Sort by recently updated
recently updated
newest added

To reproduce: Save the following as `shape.txt`: ``` { 26.3125, 9.5625; m; 26.6875, 9.5625; c; 26.6875, 4.8125; m; 31.9375, 4.8125; y; 31.9375, 27.8125; y(31.9375, 38.90625; 23.46875, 40.1875); 19, 40.1875; y(13.75,...

like this: ![aaa](https://github.com/Chlumsky/msdfgen/assets/56307410/dfa59391-c141-4f58-8537-77b3a90cce99)

Fixed three cases of division by zero. You can use the following macro to get errors at runtime when a div by zero or other floating-point error occurs, like NaN...

Fix GCC warning: `warning: '*' in boolean context, suggest '&&' instead [-Wint-in-bool-context]`

Prevent MSVC warning C4005 for macro redefinition.

We're using msdfgen-core in our project. When building it as a dll (msdfgen-cored.dll) we mistakenly used (/MT) flag which uses the static version of the runtime library in the msdfgen...