summaryrefslogtreecommitdiffstats
path: root/core/templates
Commit message (Expand)AuthorAgeFilesLines
* Merge commit godotengine/godot@6c05ec3d6732cac44cf85c91db7d3fd1075bcb23Spartan3222024-11-151-2/+3
|\
| * Merge pull request #98706 from Nazarwadim/fix_capture_cache_was_not_cachedThaddeus Crews2024-11-131-2/+3
| |\
| | * Fix `capture_cache.animation` was not cachedNazarii2024-10-311-2/+3
* | | Merge commit godotengine/godot@cb411fa960f0b7fdbd97dcdb4c90f9346360ee0eSpartan3222024-11-121-0/+10
|\| |
| * | Allow passing UID to importerJuan2024-11-111-0/+10
* | | Merge commit godotengine/godot@0f5f3bc9546b46b2029fc8896dc859697f1eab97Spartan3222024-11-111-3/+3
|\| |
| * | Avoid const_cast in List::erase by requiring mutable elementsrune-scape2024-11-081-3/+3
* | | Merge pull request #824 from Spartan322/fix/ahashmap-godotGeorge L. Albany2024-10-312-4/+4
|\ \ \
| * | | Fix Godot headers for AHashMap to RedotSpartan3222024-10-302-4/+4
* | | | Merge commit godotengine/godot@8004c7524fb9f43425c4d6f614410a76678e0f7cSpartan3222024-10-303-7/+49
|\ \ \ \ | |/ / / |/| / / | |/ /
| * | Merge pull request #98652 from stuartcarnie/2d_texture_state_fixesThaddeus Crews2024-10-291-4/+46
| |\ \
| | * | 2D: Fix various issues and minor performance optimisationsStuart Carnie2024-10-301-4/+46
| | |/
| * | Merge pull request #97934 from adamscott/give-AThousandShips-a-breakThaddeus Crews2024-10-293-3/+3
| |\ \ | | |/ | |/|
| | * Set clang-format `RemoveSemicolon` rule to `true`Adam Scott2024-10-253-3/+3
* | | Merge pull request #818 from Spartan322/fixup/copyright-headersGeorge L. Albany2024-10-2732-64/+64
|\ \ \
| * | | Fix copyright headers referring to GodotSpartan3222024-10-2732-64/+64
* | | | Merge commit godotengine/godot@61accf060515416da07d913580419fd8c8490f7bSpartan3222024-10-263-0/+782
|\ \ \ \ | |/ / / |/| / / | |/ /
| * / Implement array based hash mapnazarii2024-10-243-0/+778
| |/
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-1132-0/+64
* | Rebrand Godot to RedotRandolph W. Aarseth II2024-10-112-2/+2
|/
* Merge pull request #97465 from DarioSamo/lock-free-ridRémi Verschelde2024-10-041-71/+68
|\
| * Make RID_Owner lock-free for fetching.Juan Linietsky2024-09-251-71/+68
* | Add a sort method to Dictionary and HashMapAaron Franke2024-10-022-0/+86
* | [Core] Add missing `HashMapComparatorDefault` casesA Thousand Ships2024-09-281-0/+95
* | SCons: Add unobtrusive type hints in SCons filesThaddeus Crews2024-09-251-0/+1
|/
* Merge pull request #94137 from Craig-Stoneham/masterRémi Verschelde2024-08-263-35/+35
|\
| * Improve Template Class Conditionals (Code Style)Craig-Stoneham2024-08-253-35/+35
* | WorkerThreadPool (plus friends): Overhaul unlock allowance zonesPedro J. Estébanez2024-08-212-20/+6
|/
* Merge pull request #95469 from bruvzg/cowdata_unrefRémi Verschelde2024-08-161-13/+12
|\
| * `CowData` remove hardcoded offset and unused argument from `_unref`.bruvzg2024-08-131-13/+12
* | Merge pull request #94353 from aaronp64/cowdata_insertRémi Verschelde2024-08-161-5/+8
|\ \ | |/ |/|
| * Improve CowData::insert performanceaaronp642024-07-151-5/+8
* | Fixup recent changes to threading concernsPedro J. Estébanez2024-07-161-2/+6
|/
* WorkerThreadPool: Refactor deadlock prevention collaboration into a generic m...Pedro J. Estébanez2024-06-191-2/+2
* CommandQueueMT: Pre-allocate memory to avoid a bunch of allocations at startupPedro J. Estébanez2024-05-092-3/+2
* Merge pull request #91725 from RandomShaper/cmd_queue_avoid_skipRémi Verschelde2024-05-091-2/+19
|\
| * CommandQueueMT: Fix sync command awaiters missing the chancePedro J. Estébanez2024-05-081-2/+19
* | Apply additional fixes to servers' threadingPedro J. Estébanez2024-05-081-0/+9
* | CommandQueueMT: Fix command cleanup (revive destructor call + plus handle buf...Pedro J. Estébanez2024-05-081-1/+5
|/
* Merge pull request #91104 from RandomShaper/simple_type_cppRémi Verschelde2024-05-082-20/+3
|\
| * Redefine GetSimpleTypeT<> in terms of <type_traits>Pedro J. Estébanez2024-04-242-20/+3
* | Merge pull request #90705 from AThousandShips/foreach_listRémi Verschelde2024-05-071-24/+32
|\ \
| * | Reduce and prevent unnecessary random-access to `List`A Thousand Ships2024-05-041-24/+32
* | | [Core] Add `LocalVector::has` for convenienceA Thousand Ships2024-05-061-0/+4
|/ /
* | Merge pull request #90760 from RandomShaper/cmd_queue_good_syncRémi Verschelde2024-05-012-72/+30
|\ \
| * | CommandQueueMT: Optimize & fix handling of sync/ret commandsPedro J. Estébanez2024-04-232-72/+30
| |/
* / Fix GCC 14 -Wtemplate-id-cdtor warningsRémi Verschelde2024-04-262-3/+3
|/
* Merge pull request #90268 from RandomShaper/wtp_serversRémi Verschelde2024-04-152-25/+26
|\
| * Use WorkerThreadPool for Server threadsJuan Linietsky2024-04-102-25/+26
* | CommandQueueMT: Fix flush re-entrancyPedro J. Estébanez2024-04-101-7/+6
|/