diff options
author | Martin Capitanio <capnm@capitanio.org> | 2023-12-30 02:19:05 +0100 |
---|---|---|
committer | Martin Capitanio <capnm@capitanio.org> | 2023-12-31 16:14:44 +0100 |
commit | 74ed6d63bfc7cd022737b3356999789d4ef5d5ec (patch) | |
tree | 96ad2689f9789e26251ac8840a0670ec3554e99b /thirdparty/thorvg/src/renderer/tvgCommon.h | |
parent | 13a0d6e9b253654f5cc2a44f3d0b3cae10440443 (diff) | |
download | redot-engine-74ed6d63bfc7cd022737b3356999789d4ef5d5ec.tar.gz |
ThorVG: update from v0.11.2 to v0.11.6
https://github.com/thorvg/thorvg/releases/tag/v0.11.6
Godot related:
+ [Renderer] Improved the internal structure for compact
scene-hierarchy traversing.
+ [SwEngine] Improved trigonometric & image scaler performance.
+ [SwEngine] Fixed a loss of image pixels during image down-scaling.
+ [Renderer/Engine] Improved safety measures.
+ [SwEngine] Resolved a bug causing strokes to be improperly
invisible due to clipping.
thorvg/thorvg#1785
+ [Renderer] Rectified the precision of rounded rectangle corners.
thorvg/thorvg#1824
+ [Portability] Resolved compiler shadowing warnings.
thorvg/thorvg#1811
Fixes godotengine#85465 Clipped strokes from outside the canvas.
Fixes godotengine#86012 Rounded rectangles in SVG files rendering incorrectly.
Diffstat (limited to 'thirdparty/thorvg/src/renderer/tvgCommon.h')
-rw-r--r-- | thirdparty/thorvg/src/renderer/tvgCommon.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thirdparty/thorvg/src/renderer/tvgCommon.h b/thirdparty/thorvg/src/renderer/tvgCommon.h index f36b4b9b30..2b67681a40 100644 --- a/thirdparty/thorvg/src/renderer/tvgCommon.h +++ b/thirdparty/thorvg/src/renderer/tvgCommon.h @@ -62,7 +62,7 @@ using namespace tvg; #define TVG_CLASS_ID_LINEAR 4 #define TVG_CLASS_ID_RADIAL 5 -enum class FileType { Tvg = 0, Svg, Lottie, Raw, Png, Jpg, Webp, Unknown }; +enum class FileType { Tvg = 0, Svg, Lottie, Raw, Png, Jpg, Webp, Gif, Unknown }; using Size = Point; |