| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
[4.3] Corrected manpage
|
|/ |
|
|\
| |
| | |
[4.3] Fix invalid doc references to godot_notifications
|
| | |
|
|\ \
| |/
|/| |
[4.3] Bump to 4.3.1.alpha
|
| | |
|
|\|
| |
| | |
[4.3] Revert "ResourceLoader: Report error if resource type unrecognized"
|
|/
|
|
| |
This reverts commit a0c17446add3a35f4b402e7c855301e5bf36cf47.
|
|\
| |
| | |
[4.3] Fix `using Redot;` to `using Godot;` in docs
|
|/ |
|
|\
| |
| | |
[4.3] Fix 32-bit Windows build
|
|/
|
|
| |
(cherry picked from commit 287b7543a0861a74e1b1f8b8d88102f5d9e13586)
|
|\
| |
| | |
[4.3] Optimize `String::replace` methods
|
|/
|
|
|
|
|
| |
Performs a single allocation, only when any instances are found, and
avoids concatenations and other unnecessary conversions.
(cherry picked from commit cbaec62b0335bc70c7cf7d55651678591bafafd2)
|
|\
| |
| | |
[4.3] Correct `Node._unhandled_picking_input` to refer to InputEvent
|
|/ |
|
|\
| |
| | |
[4.3] Merge commit godotengine/godot@711c725
|
|/| |
|
| |\
| | |
| | |
| | | |
[4.3] Windows: Avoid child processes inheriting all file handles
|
| | | |
|
| |\ \
| | | |
| | | |
| | | | |
[4.3] Fix animation snapping in seconds mode
|
| | |/
| | |
| | |
| | | |
fixes animation snapping rounding to weird values in seconds mode + fixes holding shift not reducing snap value
|
| |\ \
| | | |
| | | |
| | | | |
[4.3] Fix deadlocks related to ClassDB queries about global classes
|
| | |/
| | |
| | |
| | |
| | |
| | | |
`ClassDB::can_instantiate()` and other reflection methods deadlock if the type is an script global class, when such script indirectly uses a not-yet-registered class. The reason is the `ClassDB` read lock is still held when invoking the `ResourceLoader` to load the class script, which may in turn need to lock for writing (for the class registration).
In particular, this happens with some types related to animation tree, that aren't registered at engine startup, but can happen with others, especially ones from the user. Registration statements are also added for the animation-related types that were lacking them.
|
| |\ \
| | |/
| |/|
| | | |
[4.3] Cherry-picks related to `ResourceLoader`
|
| | |
| | |
| | |
| | |
| | |
| | | |
Co-authored-by: Summersay415 <summersay415@gmail.com>
(cherry picked from commit fe21913ee82c9e3fd660b511f618fce40cf43e49)
|
| | |
| | |
| | |
| | | |
(cherry picked from commit f31867d2b9e7b916e24683c024764bcc3d326a83)
|
| | |
| | |
| | |
| | |
| | |
| | | |
This is a complement to: https://github.com/godotengine/godot/pull/96593
(cherry picked from commit 97197ff5e9c73ffbb2e3822d40a63bc3f8c47373)
|
| | |
| | |
| | |
| | | |
(cherry picked from commit ccd470d33c49e28d5be3ca258da4f2ce950949db)
|
| | |
| | |
| | |
| | | |
(cherry picked from commit 0f3ee922e07fd4d16d9ef6dac150beb9c84ac527)
|
| | |
| | |
| | |
| | | |
(cherry picked from commit c450f4d667e9f2462cb506cd3a32ca882c49ba68)
|
| | |
| | |
| | |
| | | |
(cherry picked from commit bfb5570c033b633c030cc269d5e98213dfebd5a5)
|
| | |
| | |
| | |
| | | |
(cherry picked from commit 0441c67de67b3c84d57e8ade5f3a0fee70959338)
|
| | |
| | |
| | |
| | | |
(cherry picked from commit 9cbc3f14198c30c14315cabf72b0e3e3438b2f61)
|
| | |
| | |
| | |
| | | |
(cherry picked from commit 31a9e10ddb37f7b5c8697c24ba02ce7bd7a1305a)
|
| | |
| | |
| | |
| | |
| | |
| | | |
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)
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
1. Make handling of user tokens atomic:
Loads started with the external-facing API used to perform a two-step setup of the user token. Between both, the mutex was unlocked without its reference count having been increased. A non-user-initiated load could therefore destroy the load task when it unreferenced the token.
Those stages now happen atomically so in the one hand, the described race condition can't happen so the load task life insurance doesn't have a gap anymore and, on the other hand, the ugliness that the call to load could return `ERR_BUSY` if happening while other thread was between both steps is gone.
The code has been refactored so the user token concerns are still outside the inner load start function, which is agnostic to that for a cleaner implementation.
2. Clear ambiguity between load operations running on `WorkerThreadPool`:
The two cases are: single-loaded thread directly started by a user pool task and a load started by the system as part of a multi-threaded load.
Since ensuring all the code dealing with this distinction would make it very complex, and error-prone, a different measure is applied instead: just take one of the cases out of the dicotomy. We now ensure every load happening on a pool thread has been initiated by the system.
The way of achieving that is that a single-threaded user-started load initiated from a pool thread, is run as another task.
(cherry picked from commit df23858488098086da20c67d9fc62f7ffb3d528c)
|
| | |
| | |
| | |
| | | |
(cherry picked from commit 5c970db2e49af93139d15d3fe090db44b4bd3317)
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Benefits:
- Simpler code. The main load function is renamed so it's apparent that it's not just a thread entry point anymore.
- Cache and thread modes of the original task are honored. A beautiful consequence of this is that, unlike formerly, re-issued loads can use the resource cache, which makes this mechanism much more performant.
- The newly added getter for caller task id in WorkerThreadPool allows to remove the custom tracking of that in ResourceLoader.
- The check to replace a cached resource and the replacement itself happen atomically. That fixes deadlock prevention leading to multiple resource instances of the same one on disk. As a side effect, it also makes the regular check for replace load mode more robust.
(cherry picked from commit 28619e26cf35227c3ddab35878e1045f82895657)
|
| | |
| | |
| | |
| | | |
(cherry picked from commit bd0959ebdd8819321f9b24880d05b43eb2aaa4cc)
|
| | |
| | |
| | |
| | | |
(cherry picked from commit 2ff6594928f0d6004ca76359af8e31c504b0bd57)
|
| | |
| | |
| | |
| | |
| | |
| | | |
This reverts commit 41c07856361d7cf2bcbda6d84386b1a0d3969f6a.
(cherry picked from commit e9407d48772e9ed1382f6ccd5a73e6d12465ab2f)
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
LegendaryGuard/rebranding/comment-switch-godette-to-redot-chan
[4.3] Rebrand godette into redot-chan on platformer 2 comment for consistency
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
[4.3] Fix android logger Godot references to Redot
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
[4.3] Rebrand Godette to Redot-chan
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
[4.3] Fix Redot being logged as godot in android logger
|
|/ / / |
|