summaryrefslogtreecommitdiffstats
path: root/thirdparty/misc
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@87318a2fb7fffeb72adca934e31915be077c3d1fSpartan3222024-11-062-6/+6
|\
| * smol-v: update to 2024 to support SPIR-V 1.6Stuart Carnie2024-11-032-6/+6
| |
* | Rebrand Godot to RedotRandolph W. Aarseth II2024-10-111-1/+1
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add Linux Editor tests workflow matrix Add Windows Editor w/ Mono workflow matrix Add Generate Glue Code job to Windows workflow Add Build GodotSharp job to Windows workflow Add godot compatibility version references Add Godot author info Add Godot version compatibility info Add Godot donor info Add Godot authors and donors to editor_about.cpp Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Update bcdec to latest versionBlueCube33102024-09-291-21/+37
|
* Replace squish with bcdec for BC decompressionBlueCube33102024-09-261-0/+1329
|
* Fix memory leak on QOA importDeeJayLSP2024-08-282-12/+8
|
* qoa: Apply upstream patchesDeeJayLSP2024-06-082-108/+22
|
* Merge pull request #91014 from DeeJayLSP/qoa-wav-playbackRémi Verschelde2024-05-022-0/+883
|\ | | | | | | Add QOA (Quite OK Audio) as a WAV compression mode
| * Add QOA (Quite OK Audio) as a WAV compression modeDeeJayLSP2024-05-012-0/+883
| |
* | Replace Clipper1 library by Clipper2 libraryRicardo Buring2024-04-203-5221/+0
|/
* r128: Update to include latest fix for intrinsics being incorrect included.Andreia Gaita2023-11-061-24/+61
| | | | | https://github.com/fahickman/r128/pull/15 is needed to build on platforms that define R128_STDC_ONLY
* Cleanup various repository documentation filesRémi Verschelde2023-10-101-0/+0
| | | | | | | | - Reformat logo license as a plain text file. - Fix outdated links or references to SFC or Visual Script. - Tweak contents of `CONTRIBUTING.md` to highlight contributor docs more prominently, and make it easier to parse. - Tweak formatting and contents in `thirdparty/README.md` for consistency.
* Make ok_color functions staticbonjorno72023-05-131-29/+29
| | | | It needs to be a class to prevent build errors, but the functions can at least be static, so you don't have to instance the class.
* Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵bruvzg2022-10-072-2/+17
| | | | change warnings=all to use /W4.
* Allow picking similar colours using OKHSL.K. S. Ernest (iFire) Lee2022-06-072-0/+1351
|
* Replace most uses of Map by HashMapreduz2022-05-162-9/+9
| | | | | | | | | | | | * Map is unnecessary and inefficient in almost every case. * Replaced by the new HashMap. * Renamed Map to RBMap and Set to RBSet for cases that still make sense (order matters) but use is discouraged. There were very few cases where replacing by HashMap was undesired because keeping the key order was intended. I tried to keep those (as RBMap) as much as possible, but might have missed some. Review appreciated!
* Add FastNoiseLite / general noise overhaulHendrik Brucker2022-03-204-2471/+0
| | | | | | - replace OpenSimplexNoise Co-authored-by: Cory Petkovsek <tinmanjuggernaut@users.noreply.github.com>
* Merge pull request #58497 from JFonS/stb_rect_pack_upgradeRémi Verschelde2022-02-251-20/+15
|\
| * Upgrade stb_rect_pack to 1.01jfons2022-02-241-20/+15
| | | | | | | | Enables large rectangle support by default.
* | Fixed issue with Godot modifications to polypartition.cpp third-party fileNova2022-02-212-2/+2
|/
* Core: Move Vector2i to its own `vector2i.h` headerRémi Verschelde2022-02-042-44/+43
| | | | Also reduce interdependencies and clean up a bit.
* Refactor and move easing equationskobewi2021-09-241-323/+0
|
* Add a special case for 0-time interpolationskobewi2021-09-241-0/+4
|
* Replace stb_vorbis with libogg+libvorbisEllen Poe2021-09-092-5565/+0
|
* Complete rewrite of TweensTomasz Chabora2021-06-191-2/+2
| | | | | | | | | | * Tweens were changed from Node to RefCounted. New API is inspired by DOTween. * Tweens are created and managed by SceneTree, similar to SceneTreeTimer, which makes them ultra cheap to use a lot. * Animating with Tweens is done by creating sequences of Tweeners. You create them from code and they autostart by default (fire-and-forget). * There are 4 Tweeners that cover the former Tween functionality: PropertyTweener, IntervalTweener, CallbackTweener and MethodTweener. * The methods were simplified a lot. Long argument lists are replaced with chained calls on Tweens and Tweeners. * Tweeners by default execute in sequence, so it's easy to create complex chained animations. * You can bind a Tween to a node. Tween will be removed automatically when the bound node is freed.
* Implement shader cachingreduz2021-05-312-0/+2277
| | | | | | | | | | | | * Shader compilation is now cached. Subsequent loads take less than a millisecond. * Improved game, editor and project manager startup time. * Editor uses .godot/shader_cache to store shaders. * Game uses user://shader_cache * Project manager uses $config_dir/shader_cache * Options to tweak shader caching in project settings. * Editor path configuration moved from EditorSettings to new class, EditorPaths, so it can be available early on (before shaders are compiled). * Reworked ShaderCompilerRD to ensure deterministic shader code creation (else shader may change and cache will be invalidated). * Added shader compression with SMOLV: https://github.com/aras-p/smol-v
* Fix STL to Godot type convertion of polypartitionHaoyu Qiu2021-05-212-12/+12
|
* Update PolyPartition / Triangulator libraryAaron Franke2021-01-125-1856/+3046
|
* r128: Update to upstream 1.4.4, fixes warningsRémi Verschelde2021-01-081-5/+5
|
* Rename empty() to is_empty()Marcel Admiraal2020-12-281-10/+10
|
* Fix some easing equations' undefined behaviours.Fabio Alessandrelli2020-12-081-12/+23
| | | | | | Spotted via -Wunsequenced. Easing equations had different behaviours depending on the toolchain due to its abusing of inline assignments.
* Updated open-simplex to have const noise functionsSacha Waked2020-12-042-13/+13
| | | "open-simplex-noise-in-c" now updated to master and "opensimplex" module refactored accordingly
* Update "open-simplex-noise-in-c" to fix undefined signed overflow.bruvzg2020-11-091-5/+6
|
* Reorganized core/ directory, it was too fatty alreadyreduz2020-11-071-2/+2
| | | | | | -Removed FuncRef, since Callable makes it obsolete -Removed int_types.h as its obsolete in c++11+ -Changed color names code
* Exposed randi_range to global funcs + renamed rand_range to randf_rangeYuri Roubinsky2020-11-061-0/+23
|
* Fix biased output of randi_rangeYuri Roubinsky2020-10-292-0/+11
|
* stb_vorbis: Update to upstream version 1.20Rémi Verschelde2020-07-201-5/+10
| | | | Upstreams our crash fixes from #38422 and #40174.
* stb_vorbis: Add missing error checks in comment reading mallocsRémi Verschelde2020-07-071-0/+3
| | | | | | Backported from https://github.com/nothings/stb/pull/989. Fixes #40164.
* Merge pull request #38711 from clayjohn/force-floatRémi Verschelde2020-05-181-2/+2
|\ | | | | Force using floats in cubemap coefficient
| * Force using floats in cubemap coefficientclayjohn2020-05-121-2/+2
| |
* | Remove HQ2X and the `Image.expand_2x_hq2x()` methodHugo Locurcio2020-05-162-2655/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | As of Godot 3.0, HQ2X is no longer used to upscale the editor theme and icons on hiDPI displays, which limited its effective uses. HQ2X was also used to upscale the project theme when the "Use Hidpi" project setting was enabled, but results were often less than ideal. The new StyleBoxFlat and SVG support also make HQ2X less important to have as a core feature. This decreases binary sizes slightly (-150 KB on most platforms, -212 KB on WebAssembly release). This partially addresses #12419.
* | Update r128.h to include latest fix for mingw-64 32 bit builds.Marcel Admiraal2020-05-161-7/+7
|/
* thirdparty: Cleanup after #38386, document provenance and copyrightRémi Verschelde2020-05-113-0/+2753
| | | | Also renamed `delaunay.h` to `delaunay_2d.h` to match the class name.
* Fix crash in stb_vorbis.cPedro J. Estébanez2020-05-031-1/+1
|
* Merge pull request #38361 from akien-mga/stb_vorbis-1.19Rémi Verschelde2020-04-301-82/+135
|\ | | | | stb_vorbis: Update to upstream version 1.19
| * stb_vorbis: Update to upstream version 1.19Rémi Verschelde2020-04-301-82/+135
| | | | | | | | | | | | 1.19 - 2020-02-05 - warnings 1.18 - 2020-02-02 - fix seek bugs; parse header comments; misc warnings etc.
* | Merge pull request #38360 from akien-mga/drop-unused-curl_hostcheckRémi Verschelde2020-04-302-256/+0
|\ \ | | | | | | Drop now unused curl_hostcheck.c
| * | Drop now unused curl_hostcheck.cRémi Verschelde2020-04-302-256/+0
| |/ | | | | | | One less thirdparty library to document \o/
* / FastLZ: Update to upstream version 0.5.0Rémi Verschelde2020-04-302-409/+447
|/ | | | | | | | | | | | | Upstream development restarted after 13 years. Changes: 2020-02-02: Version 0.5.0 Minor speed improvement on the decompressor. Prevent memory violation when decompressing corrupted input. 2020-01-10: Version 0.4.0 Only code & infrastructure clean-up, no new functionality.
* Fix copyright headers for recently added filesRémi Verschelde2020-03-281-0/+28
|