-
-
Notifications
You must be signed in to change notification settings - Fork 21.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
thorvg: Fix unintended use of
float_t
type, again
- Loading branch information
Showing
2 changed files
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/thirdparty/thorvg/src/loaders/svg/tvgSvgLoader.cpp b/thirdparty/thorvg/src/loaders/svg/tvgSvgLoader.cpp | ||
index f59994aae6..b2ce38852c 100644 | ||
--- a/thirdparty/thorvg/src/loaders/svg/tvgSvgLoader.cpp | ||
+++ b/thirdparty/thorvg/src/loaders/svg/tvgSvgLoader.cpp | ||
@@ -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_t th, ts, tb; | ||
+ float th, ts, tb; | ||
const char *content, *hue, *satuation, *brightness; | ||
content = str + 4; | ||
content = _skipSpace(content, nullptr); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters