We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The signature of ttf_outline_evenodd is
bool ttf_outline_evenodd(const ttf_outline_t *outline, const float point[2], int subglyph_order)
I noticed that ttf_outline_evenodd_base is calling ttf_outline_evenodd_base only for x component
int res = ttf_outline_evenodd_base(outline, &outline->cont[contour].pt[test_point].x, i, &dist); ^ ^
Shouldn't it be?
int res = ttf_outline_evenodd_base(outline, &outline->cont[contour].pt[test_point], i, &dist);
Thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The signature of ttf_outline_evenodd is
I noticed that ttf_outline_evenodd_base is calling ttf_outline_evenodd_base only for x component
Shouldn't it be?
Thanks
The text was updated successfully, but these errors were encountered: