summaryrefslogtreecommitdiffstats
path: root/core/templates
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@711c725cf1b641d05d6cc988a64601622e48fe4aSpartan3222024-11-152-20/+6
|\
| * WorkerThreadPool (plus friends): Overhaul unlock allowance zonesPedro J. Estébanez2024-09-052-20/+6
| | | | | | | | | | | | This fixes a rare but possible deadlock, maybe due to undefined behavior. The new implementation is safer, at the cost of some added boilerplate. (cherry picked from commit f4d76853b9d921e3645295f9bebc39eb73661e67)
* | Fix copyright headers referring to GodotSpartan3222024-10-2731-62/+62
| |
* | Rebrand preambles to RedotSpartan3222024-10-1331-0/+62
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit e8542b06acca3c1bdeee4b528411771f0819f084) 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>
* | Rebrand Godot 4.3 to RedotTrashguy2024-10-132-2/+2
|/
* Fixup recent changes to threading concernsPedro J. Estébanez2024-07-161-2/+6
| | | | | | | | | | | | | | ResourceLoader: - Fix invalid tokens being returned. - Remove no longer written `ThreadLoadTask::dependent_path` and the code reading from it. - Clear deadlock hazard by keeping the mutex unlocked during userland polling. WorkerThreadPool: - Include thread call queue override in the thread state reset set, which allows to simplify the code that handled that (imperfectly) in the ResourceLoader. - Handle the mutex type correctly on entering an allowance zone. CommandQueueMT: - Handle the additional possibility of command buffer reallocation that mutex unlock allowance introduces.
* WorkerThreadPool: Refactor deadlock prevention collaboration into a generic ↵Pedro J. Estébanez2024-06-191-2/+2
| | | | | | | mechanism This is strictly beyond a refactor because it also changes when the mutexes are relocked, but that's only for extra safety.
* 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 chance
| * 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 ↵Pedro J. Estébanez2024-05-081-1/+5
|/ | | | buffer realloc)
* Merge pull request #91104 from RandomShaper/simple_type_cppRémi Verschelde2024-05-082-20/+3
|\ | | | | | | Redefine `GetSimpleTypeT<>` in terms of `<type_traits>`
| * 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`
| * | Reduce and prevent unnecessary random-access to `List`A Thousand Ships2024-05-041-24/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | Random-access access to `List` when iterating is `O(n^2)` (`O(n)` when accessing a single element) * Removed subscript operator, in favor of a more explicit `get` * Added conversion from `Iterator` to `ConstIterator` * Remade existing operations into other solutions when applicable
* | | [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 commands
| * | 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
|/ | | | Fixes #91206.
* Merge pull request #90268 from RandomShaper/wtp_serversRémi Verschelde2024-04-152-25/+26
|\ | | | | Use WorkerThreadPool for Server threads (enhanced)
| * Use WorkerThreadPool for Server threadsJuan Linietsky2024-04-102-25/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Servers now use WorkerThreadPool for background computation. * This helps keep the number of threads used fixed at all times. * It also ensures everything works on HTML5 with threads. * And makes it easier to support disabling threads for also HTML5. CommandQueueMT now syncs with the servers via the WorkerThreadPool yielding mechanism, which makes its classic main sync semaphore superfluous. Also, some warnings about calls that kill performance when using threaded rendering are removed because there's a mechanism that warns about that in a more general fashion. Co-authored-by: Pedro J. Estébanez <pedrojrulez@gmail.com>
* | CommandQueueMT: Fix flush re-entrancyPedro J. Estébanez2024-04-101-7/+6
|/
* Fixed Timestep Interpolation (2D)Ricardo Buring2024-03-231-0/+16
| | | | | | | Adds fixed timestep interpolation to the rendering server (2D only). Switchable on and off with a project setting (default is off). Co-authored-by: lawnjelly <lawnjelly@gmail.com>
* Enforce template syntax `typename` over `class`Thaddeus Crews2024-03-0726-118/+118
|
* Remove word duplicates in comments and strings, and fix casing and punctuationRobert Yevdokimov2024-02-231-1/+1
|
* [Core] Upgrade some array helper classes to 64 bitsA Thousand Ships2024-02-192-41/+41
| | | | | | Following upgrades to `CowData` to 64 bit indices these helpers are no longer able to handle the index ranges, possibly causing bugs on sort and search.
* Add const lvalue ref to core/* container parametersMuller-Castro2024-02-141-2/+2
|
* Link hash table primes externally to prevent data duplication in binaryBartłomiej T. Listwon2024-02-101-2/+2
|
* [Core] Improve `CowData` and `Memory` metadata alignment.bruvzg2024-02-051-30/+62
|
* Use '_v' shorthand for type traits and 'if constexpr' where appropriatevittorioromeo2024-02-025-16/+16
|
* Shadow volume culling and tighter shadow caster cullinglawnjelly2024-01-301-0/+6
| | | | | Existing shadow caster culling takes no account of the camera. This PR adds the highly encapsulated class RenderingLightCuller which can cut down the casters in the shadow volume to only those which can cast shadows on the camera frustum.
* Merge pull request #86730 from reduz/64-bit-cowdataRémi Verschelde2024-01-193-96/+127
|\ | | | | Promote CowData to 64 bits
| * Promote CowData to 64 bitsJuan Linietsky2024-01-193-96/+127
| | | | | | | | Fixes a lot of bugs, please help me fill the list.
* | Merge pull request #86587 from RandomShaper/wtp_enhanceRémi Verschelde2024-01-112-24/+32
|\ \ | |/ |/| | | Enhance & fix `WorkerThreadPool`
| * WorkerThreadPool: Avoid most runtime allocationsPedro J. Estébanez2024-01-081-5/+1
| | | | | | | | | | | | | | | | | | | | Just a little optimization. **NOTE:** With `RID_Owner` we could replace each pair of `PagedAllocator` and `HashMap`-of-ids-to-pointers. However, that would force us to expose `RID` as the task/group id, instead of `int`, which would break the API. Too bad. Let's wait until Godot 5.0.
| * WorkerThreadPool: Avoid deadlocks when CommandQueueMT is involvedPedro J. Estébanez2024-01-081-19/+31
| | | | | | | | | | | | | | | | This commit lets CommandQueueMT play nicely with the WorkerThreadPool to avoid non-progressable situations caused by an interdependence between both. While a command queue is being flushed, it allows the WTP to release its lock while tasks are being awaited so they can make progress in case they need in turn to post to the command queue.
* | [Core] Prevent copying of `SelfList` and `SelfList::List`A Thousand Ships2024-01-071-0/+6
| | | | | | | | | | | | | | Copying of these types is unsafe and should be detected Also removed unnecessary constructors for `TileMap` `DebugQuadrant` and `RenderingQuadrant` which used copying of `SelfList::List`
* | fix: data race in PagedArrayStuart Carnie2024-01-031-9/+12
|/
* Make PagedAllocator more compatible (esp., with HashMap)Pedro J. Estébanez2023-12-201-1/+5
|
* RBMap: Add explicit copy operators to iteratorsPedro J. Estébanez2023-12-151-4/+14
| | | | | | Absence thereof is deprecated and breaks builds on most compilers. Bonus: Fix parameter naming style throughout.
* [Core] Fix crash when hashing empty `CharString`A Thousand Ships2023-11-261-1/+1
|
* Fixup thread-owned lambda bookkeeping on thread exit (take 2)Pedro J. Estébanez2023-11-231-0/+39
|
* Merge pull request #82797 from RandomShaper/fix_rbmapRémi Verschelde2023-10-161-0/+2
|\ | | | | Fix `RBMap`'s, iterator-based, `remove()`
| * Fix RBMap's, iterator-based, remove()Pedro J. Estébanez2023-10-041-0/+2
| |
* | Replace `sanity` with `safety` for checksA Thousand Ships2023-10-082-4/+4
|/
* Merge pull request #73813 from groud/improve_y_sort_performancesRémi Verschelde2023-09-251-0/+51
|\ | | | | | | Greatly improve Y-sort performance on TileMaps
| * Improve TileMap Y-sorting performanceGilles Roudière2023-09-251-0/+51
| |
* | Fix allocation size overflow check in `CowData`A Thousand Ships2023-09-191-2/+5
|/
* [Core] Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-09-115-11/+11
|