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
With freetype 2.13.3 and an older version of ftgl (but the code is the same in git today) I see:
FTVectoriser.cpp:169:25: error: invalid conversion from 'unsigned char*' to 'char*' [-fpermissive] char* tagList = &outline.tags[startIndex]; ^~~~~~~~~~~~~~~~~~~~~~~~~
I used
--- src/FTVectoriser.cpp.orig 2024-08-21 19:55:34.860855515 +0000 +++ src/FTVectoriser.cpp @@ -166,7 +166,7 @@ void FTVectoriser::ProcessContours() for(int i = 0; i < ftContourCount; ++i) { FT_Vector* pointList = &outline.points[startIndex]; - char* tagList = &outline.tags[startIndex]; + char* tagList = (char *)&outline.tags[startIndex]; endIndex = outline.contours[i]; contourLength = (endIndex - startIndex) + 1;
to fix the build.
The text was updated successfully, but these errors were encountered:
Note this repo isn't really maintained anymore (see #10). You might want to try this fork: https://github.com/HamzaM3/ftgl
Sorry, something went wrong.
No branches or pull requests
With freetype 2.13.3 and an older version of ftgl (but the code is the same in git today) I see:
I used
to fix the build.
The text was updated successfully, but these errors were encountered: