thorvg: Fix unintended use of `float_t` type, again
This commit is contained in:
parent
9a4942f2f5
commit
38716b94db
|
@ -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);
|
|
@ -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));
|
*ref = _idFromUrl((const char*)(str + 3));
|
||||||
return true;
|
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] == ')') {
|
} 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;
|
const char *content, *hue, *satuation, *brightness;
|
||||||
content = str + 4;
|
content = str + 4;
|
||||||
content = _skipSpace(content, nullptr);
|
content = _skipSpace(content, nullptr);
|
||||||
|
|
Loading…
Reference in New Issue