summaryrefslogtreecommitdiff
path: root/thirdparty
AgeCommit message (Collapse)Author
2018-12-10Merge pull request #24258 from volzhs/libwebp-1.0.1Rémi Verschelde
Update libwebp to 1.0.1
2018-12-10Update libwebp to 1.0.1volzhs
2018-12-10TinyEXR: Sync with upstream master branchRémi Verschelde
Fixes #24247.
2018-11-27Fix GLES2 Red Green Texture DecompressionDavid Sichma
Replaced broken decompression code with two calls to DXT5 decompression. This should fix some issues with normal maps as they usually are stored as RG Textures and were decompressed incorrectly.
2018-11-23glad: Sync with upstream 0.1.28Rémi Verschelde
2018-11-20Merge pull request #23124 from Faless/net_enetRémi Verschelde
Use NetSocket directly for ENet.
2018-11-03Update libwebsocket to 3.0.1Fabio Alessandrelli
2018-11-02Use NetSocket directly for ENet.Fabio Alessandrelli
Avoid PacketPeerUDP buffering.
2018-10-29Server platform works on OS X tooMarcelo Fernandez
2018-09-29Fix warning about functions defined but not used [-Wunused-function]Rémi Verschelde
Fixes the following GCC 5 warnings: ``` core/io/zip_io.h:128:26: warning: 'zlib_filefunc_def zipio_create_io_from_file(FileAccess**)' defined but not used [-Wunused-function] core/script_debugger_remote.cpp:110:17: warning: 'ObjectID safe_get_instance_id(const Variant&)' defined but not used [-Wunused-function] drivers/unix/socket_helpers.h:103:12: warning: 'int _socket_create(IP::Type&, int, int)' defined but not used [-Wunused-function] drivers/unix/socket_helpers.h:45:15: warning: 'size_t _set_sockaddr(sockaddr_storage*, const IP_Address&, int, IP::Type)' defined but not used [-Wunused-function] drivers/unix/socket_helpers.h:76:15: warning: 'size_t _set_listen_sockaddr(sockaddr_storage*, int, IP::Type, IP_Address)' defined but not used [-Wunused-function] editor/editor_fonts.cpp:40:24: warning: 'Ref<BitmapFont> make_font(int, int, int, int, const int*, const Ref<Texture>&)' defined but not used [-Wunused-function] editor/editor_themes.cpp:85:26: warning: 'Ref<StyleBoxFlat> change_border_color(Ref<StyleBoxFlat>, Color)' defined but not used [-Wunused-function] editor/import/editor_import_collada.cpp:493:13: warning: 'void _generate_normals(const PoolVector<int>&, const PoolVector<Vector3>&, PoolVector<Vector3>&)' defined but not used [-Wunused-function] editor/import/editor_import_collada.cpp:524:13: warning: 'void _generate_tangents_and_binormals(const PoolVector<int>&, const PoolVector<Vector3>&, const PoolVector<Vector3>&, const PoolVector<Vector3>&, PoolVector<float>&)' defined but not used [-Wunused-function] editor/pvrtc_compress.cpp:118:13: warning: 'void _compress_etc(Image*)' defined but not used [-Wunused-function] modules/etc/image_etc.cpp:89:13: warning: 'void _decompress_etc1(Image*)' defined but not used [-Wunused-function] modules/etc/image_etc.cpp:93:13: warning: 'void _decompress_etc2(Image*)' defined but not used [-Wunused-function] modules/gdscript/editor/gdscript_highlighter.cpp:46:13: warning: 'bool _is_whitespace(CharType)' defined but not used [-Wunused-function] scene/2d/cpu_particles_2d.cpp:510:14: warning: 'float rand_from_seed_m1_p1(uint32_t&)' defined but not used [-Wunused-function] scene/3d/cpu_particles.cpp:474:14: warning: 'float rand_from_seed_m1_p1(uint32_t&)' defined but not used [-Wunused-function] scene/resources/default_theme/default_theme.cpp:123:20: warning: 'Ref<Shader> make_shader(const char*, const char*, const char*)' defined but not used [-Wunused-function] scene/resources/default_theme/default_theme.cpp:130:24: warning: 'Ref<BitmapFont> make_font(int, int, int, int, const int*, const Ref<Texture>&)' defined but not used [-Wunused-function] ``` Had to split `core/io/zip_io.h` into header and .cpp file without 'static' keyword. Not fixed yet (static definition in header used in some files but not all): ``` modules/websocket/lws_helper.h:111:13: warning: 'void _lws_make_protocols(void*, int (*)(lws*, lws_callback_reasons, void*, void*, size_t), PoolVector<String>, _LWSRef**)' defined but not used [-Wunused-function] ``` Also fixed a couple other warnings missed in previous commits.
2018-09-29Added xatlas as alternative to thekla, forced it on.Juan Linietsky
Did some hacks to it to avoid it from failing on bad geometry.
2018-09-28Move Penner easing equations to thirdparty/miscRémi Verschelde
It was Godot-ified and integrated into Tween originally (#628) without mention that it was thirdparty code, but it's actually derived from https://github.com/jesusgollonet/ofpennereasing. It's also very bad quality code and should be replaced by a better, properly-maintained library of easing equations.
2018-09-28SCons: Build core's thirdparty code in own environmentRémi Verschelde
Also move Zlib and Zstd's build instructions to core/SCsub.
2018-09-19Merge pull request #22044 from Faless/uwp_miniupnpcRémi Verschelde
Update miniupnpc to use UWP compatible APIs.
2018-09-14Add SimplexNoise and NoiseTexture as new resourcesJFonS
SimplexNoise can be used to generate parameterized fractal noise based on Open Simplex. NoiseTexture uses SimplexNoise to generate noise textures for using in shaders/visual effects.
2018-09-13Update miniupnpc to use UWP compatible APIs.Fabio Alessandrelli
Use GetBestInterfaceEX and GetAdaptersAddresses instead of GetBestRoute and GetIpAddrTable.
2018-09-13Merge pull request #22015 from vnen/uwp-arm-zstdRémi Verschelde
Patch zstd to build for UWP ARM
2018-09-12Patch zstd to build for UWP ARMGeorge Marques
Patch comes from upstream and can be removed when it makes to stable release.
2018-09-13Fix libwebsockets 32-bits UWP builds.Fabio Alessandrelli
Also fix bogus windows detect.py
2018-09-12Unify PacketPeerUDP using NetSocketFabio Alessandrelli
2018-09-12ENet wrapper properly detect disconnect on pollFabio Alessandrelli
Now PacketPeerUDP.get_available_packet_count() return -1 if the socket is in error state.
2018-09-12Make core/ includes absolute, remove subfolders from include pathRémi Verschelde
This allows more consistency in the manner we include core headers, where previously there would be a mix of absolute, relative and include path-dependent includes.
2018-09-11UPnP: Fix includes of thirdparty headersRémi Verschelde
2018-09-07Update bullet to Master 12409f1118a7c7a266f9071350c70789dfe73bb9Andrea Catania
2018-08-30Add Hindi font for editorvolzhs
2018-08-28Merge pull request #21511 from eska014/webm-nomtRémi Verschelde
Fix WebM and Theora video in HTML5 export
2018-08-27Merge pull request #21474 from elasota/fix-cvtt-scalarRémi Verschelde
Fix CVTT scalar version not compiling
2018-08-27Fix CVTT scalar version not compilingelasota
2018-08-27Fix tiled EXR crash, update tinyexr to head to fix corrupted uncompressed ↵elasota
EXR loading
2018-08-27Fix WebM module for HTML5 platformLeon Krause
2018-08-24Fix CVTT compile failures in VS2015elasota
2018-08-22Merge pull request #21281 from elasota/fix-squish-sseRémi Verschelde
Fix Squish SSE misconfiguration
2018-08-21BPTC supportelasota
2018-08-21Fix Squish SSE misconfigurationelasota
2018-08-14Merge pull request #18096 from aaronfranke/masterJuan Linietsky
[Core] Split up math_2d.h
2018-08-13Merge pull request #20913 from pulkomandy/masterRémi Verschelde
Rebase patches for fixing haiku build.
2018-08-13Merge pull request #20581 from ↵Rémi Verschelde
ronchaine/nvmath-dont-use-obsolete-functions-on-linux Do not use deprecated stuff that only glibc now implements
2018-08-11Rebase patches for fixing haiku build.Adrien Destugues
2018-08-10[Core] Change math_2d includes to vector2 includes where relevantAaron Franke
2018-07-29Do not use deprecated stuff that only glibc now implementsJari Ronkainen
2018-07-28Merge pull request #20539 from akien-mga/mbedtls-2.12.0Rémi Verschelde
mbedtls: Update to upstream version 2.12.0
2018-07-28Merge pull request #20537 from akien-mga/glad-0.1.25Rémi Verschelde
glad: Sync with upstream 0.1.25
2018-07-28mbedtls: Update to upstream version 2.12.0Rémi Verschelde
_WIN32_WINNT redefinition fix is no longer needed as it was merged upstream. PR 1453 is still not merged, diff updated to current state.
2018-07-28glad: Sync with upstream 0.1.25Rémi Verschelde
2018-07-28libpng: Update to upstream version 1.6.35Rémi Verschelde
2018-07-10Merge pull request #19422 from Faless/mbedtls_2.10Rémi Verschelde
Bump mbedTLS to version 2.10.0
2018-07-03Merge pull request #19138 from firefly2442/pcre2-10.31Max Hilbrunner
update PCRE2 to version 10.31, fixes #15662
2018-06-07Bump mbedTLS to version 2.10.0Fabio Alessandrelli
2018-06-07Add libwebsocket 3.0 BSD fixFabio Alessandrelli
2018-06-07Bump libwebsockets to version 3.0.0Fabio Alessandrelli