-
-
Notifications
You must be signed in to change notification settings - Fork 21.4k
New issue
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
ThorVG: Update to 0.13.7 #92915
ThorVG: Update to 0.13.7 #92915
Conversation
capnm
commented
Jun 8, 2024
- Test image svg_embed_bitmap_png-jpg-webp.zip.
Thanks! |
@@ -709,7 +709,7 @@ static bool _toColor(const char* str, uint8_t* r, uint8_t* g, uint8_t* b, char** | |||
*ref = _idFromUrl((const char*)(str + 3)); | |||
return true; | |||
} else if (len >= 10 && (str[0] == 'h' || str[0] == 'H') && (str[1] == 's' || str[1] == 'S') && (str[2] == 'l' || str[2] == 'L') && str[3] == '(' && str[len - 1] == ')') { | |||
float th, ts, tb; | |||
float_t th, ts, tb; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This broke the 32-bit builds again, fixed it up with 38716b9.
There's already a patch merged upstream to fix this, but if it doesn't make it to the next 0.13.x, we need to make sure to reapply the patch downstream.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This broke the 32-bit builds again, fixed it up with 38716b9.
There's already a patch merged upstream to fix this, but if it doesn't make it to the next 0.13.x, we need to make sure to reapply the patch downstream.
Could a Godot CI check be implemented for this issue so that everyone is alerted when similar ones occur?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Technically yes, but it's a matter of tradeoff between having a reasonably wide coverage on CI, and the amount of resources and time it takes for CI to pass on every single PR update.
Adding a 32-bit Linux or Windows build could be worth doing, but that's one more build to wait for many times a day.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm surprised WebAssembly builds don't catch this, as WebAssembly is still 32-bit in its base specification. 64-bit WebAssembly exists but isn't widely used yet.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure if this is possible in github - we run an extended test suite daily, the daemon figures out who is to blame and sends them an alert.