Age | Commit message (Collapse) | Author |
|
iOS: Fix memory leak on touch input
|
|
Users can still go down to 21 when using GL Compatibility.
This makes the default behavior match the default renderer, and thus avoids
a warning in the out of the box experience.
Also mark texture compression settings as basic, since out of the box users
who want to export to Android will need to enable ETC2/ASTC manually.
|
|
[InputEventKey] Avoid setting both key and modifier to the same value.
|
|
Replace incomplete iOS gesture with touch implementation.
Fixes #66422.
|
|
- X11: set main window position and size hints correctly
- All platforms: update minimum and maximum size of main window at
startup
Fixes #70984
|
|
|
|
mold is now part of the SCons `linker` option.
|
|
trigger both the context menu and the rename functionality
|
|
- Rename all instances of `capture_start()` and `capture_end()` to their new
names. Fixes #72892.
- More internal renames to match what was started in #69120.
- Use `override` consistently so that such refactoring bugs can be caught.
- Harmonize the order of definition of the overridden virtual methods in each
audio driver.
- Harmonize prototype for `set_output_device` and `set_input_device`.
Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
|
|
Downgrade the vulkan abort logic to a warning
|
|
This addresses issues where some drivers are reporting they don't meet the vulkan hardware level 1 support requirements even though they render as expected when the check is removed.
|
|
return focus.
|
|
Rename Godot's 'custom build' to 'gradle build' to better reflect the underlying build process
|
|
Improve logic to detect whether vulkan is used for rendering
|
|
|
|
Improve vulkan capability detection on Android
|
|
|
|
- Add runtime check and abort when the device doesn't meet the requirements for vulkan support
- Add filters to the AndroidManifest when exporting with a vulkan renderer
|
|
DisplayServerWindows: Update `last_focused_window` when the focused subwindow is deleted
|
|
Fortunately the location in the codebase was easy to find because there
was a FIXME comment.
|
|
subwindow is deleted
|
|
underlying build process.
|
|
This is the same icon as used on Windows.
|
|
[MacOS] Fix so that the main window is displayed before the splash screen minimum display time starts counting
|
|
Remove the XR export logic from the legacy build system:
- On Android, Godot 4 export requires the use of Android plugins which are not supported by the legacy build system
- Provides added flexibility for configuring the Android manifest for XR specific capabilities.
|
|
display time starts counting on Mac OS
|
|
|
|
Implement file provider capabilities
|
|
Extend special popup window handling to any non-popup child of a popup.
|
|
|
|
The previously used file sharing api was restricted after Android N causing the engine to crash whenever used on devices running Android N or higher.
|
|
Fix confined mouse mode not updating on resize
|
|
Fixed a few godot engine 4 warnings on clang with Opengl and Windows …
|
|
|
|
* Only two texture import modes for low/high quality now:
* S3TC/BPTC
* ETC2/ASTC
* Makes sense given this is the general preferred and most compatible combination in most platforms.
* Removed lossy_quality from VRAM texture compression options. It was unused everywhere.
* Added a new "high_quality" option to texture import. When enabled, it uses BPTC/ASTC (BC7/ASTC4x4) instead of S3TC/ETC2 (DXT1-5/ETC2,ETCA).
* Changed MacOS export settings so required texture formats depend on the architecture selected.
This solves the following problems:
* Makes it simpler to import textures as high quality, without having to worry about the specific format used.
* As the editor can now run on platforms such as web, Mac OS with Apple Silicion and Android, it should no longer be assumed that S3TC/BPTC is available by default for it.
|
|
[X11] Add support for dead keys without active IME. Fix IME focus and cleanup.
|
|
[NET] Refactor TLS configuration.
|
|
|
|
Which was unused internally, and can be replaced by:
```
while tls.get_status() == tls.STATUS_HANDSHAKING:
tls.poll()
```
|
|
Use a TLSOptions configuration object which is created via static
functions.
- "TLSOptions.client": uses the standard CA and common name verification.
- "TLSOptions.client_unsafe": uses optional CA verification (i.e. if specified)
- "TLSOptions.server": is the standard server configuration (chain + key)
This will allow us to expand the TLS configuration options to include
e.g. mutual authentication without bloating the classes that uses
StreamPeerTLS and PacketPeerDTLS as underlying peers.
|
|
Remove the ones provided automatically by the loaders, and the ones enabled by the default on the platform.
Fixes https://github.com/GodotVR/godot_openxr_loaders/issues/19
|
|
Booleanize various sync primitives' wait & locking methods
|
|
|
|
Put KeyMappingX11 stuff inside its own scope
|
|
|
|
|
|
m4gr3d/fix_godot_android_editor_4_crash_after_running_game
Fix the issue causing the Godot Android Editor to crash when returning from the launched and running game
|
|
the launched and running game
The issue was caused because the running game pid was not set, and thus had a value of `0`. When trying to stop the running game, the `EditorRun::stop()` logic would kill the process with pid 0, which on Android corresponds to the running app's own process, thus causing the editor to crash.
This issue did not happen on Godot 3 because pid with value of `0` are not considered valid.
|
|
|
|
[X11] Fix IME focus return.
|