summaryrefslogtreecommitdiffstats
path: root/servers/display_server.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@87318a2fb7fffeb72adca934e31915be077c3d1fSpartan3222024-11-061-7/+0
|\
| * Merge pull request #98709 from darksylinc/matias-upsidedown-splashThaddeus Crews2024-11-041-7/+0
| |\ | | | | | | | | | Fix splash screen upside down on Android
| | * Fix splash screen upside down on AndroidMatias N. Goldberg2024-10-311-7/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes an issue introduced in #96439 (see https://github.com/godotengine/godot/pull/96439#issuecomment-2447288702) Godot was relying on Java's activity.getWindowManager().getDefaultDisplay().getRotation(); to apply pre-rotation but this is wrong. First, getRotation() may temporarily return a different value from the correct one; which is what was causing the splash screen to be upside down. It would return -90 instead of 90 for the first rendered frame. But unfortunately, the splash screen is just one frame rendered for a very long time, so the error lingered for a long time for everyone to see. Second, to determine what rotation to use, we should be looking at what Vulkan told us, which is the value we pass to VkSurfaceTransformFlagBitsKHR::preTransform. This commit removes the now-unnecessary screen_get_internal_current_rotation() function (which was introduced by #96439) and now saves the preTransform value in the swapchain.
* | | Merge commit godotengine/godot@c6c464cf9ae56e8b68620af65125dd980d0e8122Spartan3222024-11-021-0/+1
|\| |
| * | [DisplayServer] Add feature flag for native file dialog access to `user/res` ↵Anish Mishra2024-10-301-0/+1
| |/ | | | | | | and `options`
* | Merge commit godotengine/godot@8004c7524fb9f43425c4d6f614410a76678e0f7cSpartan3222024-10-301-0/+8
|\|
| * Merge pull request #96439 from darksylinc/matias-TheForge-pr03-rebasedClay John2024-10-291-0/+8
| |\ | | | | | | Add Swappy & Pre-Transformed Swapchain
| | * Add Swappy & Pre-Transformed SwapchainMatias N. Goldberg2024-10-281-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Adds Swappy for Android for stable frame pacing - Implements pre-transformed Swapchain so that Godot's compositor is in charge of rotating the screen instead of Android's compositor (performance optimization for phones that don't have HW rotator) ============================ The work was performed by collaboration of TheForge and Google. I am merely splitting it up into smaller PRs and cleaning it up. Changes from original PR: - Removed "display/window/frame_pacing/android/target_frame_rate" option to use Engine::get_max_fps instead. - Target framerate can be changed at runtime using Engine::set_max_fps. - Swappy is enabled by default. - Added documentation. - enable_auto_swap setting is replaced with swappy_mode.
* | | Merge pull request #818 from Spartan322/fixup/copyright-headersGeorge L. Albany2024-10-271-2/+2
|\ \ \ | | | | | | | | Fix copyright headers referring to Godot
| * | | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| | | |
* | | | Merge commit godotengine/godot@61accf060515416da07d913580419fd8c8490f7bSpartan3222024-10-261-0/+2
|\ \ \ \ | |/ / / |/| / / | |/ /
| * | Merge pull request #97771 from dsnopek/openxr-linux-eglThaddeus Crews2024-10-251-0/+2
| |\ \ | | | | | | | | | | | | OpenXR: Add support for Wayland on Linux
| | * | OpenXR: Add support for Wayland on LinuxDavid Snopek2024-10-041-0/+2
| | | |
* | | | Merge commit godotengine/godot@b3bcb2dc14691f7729984128dca26a844f662fa1Spartan3222024-10-221-1/+3
|\| | |
| * | | Merge pull request #97005 from Repiteo/core/window-corner-styleThaddeus Crews2024-10-211-0/+2
| |\ \ \ | | | | | | | | | | | | | | | Core: Add `DisplayServer` flag for sharp corners
| | * | | Core: Add `DisplayServer` flag for sharp cornersThaddeus Crews2024-10-181-0/+2
| | | |/ | | |/|
| * / | Don't include `core/io/image.h` in `core/os/os.h`Yevhen Babiichuk (DustDFG)2024-10-181-1/+1
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `core/os/os.h` doesn't use `core/io/image.h`. It just brings transitive dependencies. Lots of dependencies because `core/os/os.h` is transitively included in almost every file of godot Also added `core/io/image.h` into files^1 where `Ref<Image>` and `core/os/os.h` were used to prevent obscure errors involving `Ref<Image>` ^1 except those which include `core/io/image_loader.h` or `core/io/image.h` by corresponding .h file with the same name Signed-off-by: Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com> Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
* / / Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* / [DisplayServer] Implement has_hardware_keyboard method for Android and iOS.bruvzg2024-10-021-0/+2
|/
* Add caching to `DisplayServer::can_create_rendering_device()`Hugo Locurcio2024-10-011-0/+10
| | | | | This greatly speeds up the method when using the Compatibility rendering method, where this method is not guaranteed to return `true` in that case.
* Check if RD is supported in the ProjectManager and disable creating RD ↵clayjohn2024-08-021-0/+2
| | | | projects if not supported.
* Pass window exclusive and transient properties for subwindow creationAlvin Wong2024-07-251-1/+1
| | | | | | On Windows this allows to avoid having to change the owner of the window after it has been created, which in rare circumstances may cause the window to bug out.
* Always render when XR is enabled, even if no OS windows can drawDavid Snopek2024-07-171-0/+6
|
* Fix creating cursor image from AtlasTexturekleonc2024-06-051-12/+12
|
* [DisplayServer] Add method to check if window transparency is supported and ↵bruvzg2024-05-231-0/+2
| | | | enabled.
* Properly set window class in WaylandPaulo Poiati2024-05-221-8/+8
|
* [StatusIndicator] Add method to get indicator icon screen rect.bruvzg2024-05-021-0/+1
|
* Merge pull request #89588 from bruvzg/status_ind_menu_directRémi Verschelde2024-05-011-2/+3
|\ | | | | | | [StatusIndicator] Switch API to use Texture2D instead of Image, improve handling on macOS, add method to set native popup menu directly.
| * [StatusIndicator] Switch API to use Texture2D instead of Image, improve ↵bruvzg2024-03-201-2/+3
| | | | | | | | handling on macOS, add method to set native popup menu directly.
* | Polish interaction between windowing, input and renderingPedro J. Estébanez2024-04-101-1/+0
| | | | | | | | | | - Adapt GL make/release API to the current architecture. - Fix DisplayServer being locked while dispatching input (prevent deadlocks).
* | [DisplayServer] Add separate feature flags for different native dialog types.bruvzg2024-03-261-0/+2
| |
* | [NativeMenu] Move files to the `display` subfolder.bruvzg2024-03-261-1/+1
|/
* Move `global_menu_*` methods to a separate `NativeMenu` class.bruvzg2024-03-041-0/+12
|
* Improve cursor_set_custom_image() methodkobewi2024-02-281-0/+3
|
* Merge pull request #87384 from bruvzg/sys_base_colorRémi Verschelde2024-02-131-1/+3
|\ | | | | | | Add method to get "base" system UI color and system theme change callback.
| * Add method to get "base" system UI color (macOS/Windows) and system theme ↵bruvzg2024-02-131-1/+3
| | | | | | | | change callback.
* | [macOS] Add support for native help menu search callbacks, integrate editor ↵bruvzg2024-02-131-0/+3
|/ | | | help.
* Implement support for application status indicators (tray icons).bruvzg2024-02-131-1/+10
|
* [Native File Dialog] Add support for adding custom options to the dialogs.bruvzg2024-01-241-0/+1
| | | | Add support for adding custom options (checkboxes and optionboxes) to the dialogs (both native and built-in).
* Implement a transient_to_focused modeJuan Linietsky2024-01-141-0/+2
| | | | | | | This intends to be the correct way to handle non-child windows becoming covered by the current window when becoming focused. Enabling this property on select windows, they will become transient to the currently focused one when becoming visible. This deprecates the "unparent_when_invisible" function introduced by #76025.
* [macOS] Add default Window and Help menus, allow special menu customization.bruvzg2023-12-131-0/+2
|
* Merge pull request #81218 from bruvzg/_temp_fsRémi Verschelde2023-10-041-1/+2
|\ | | | | | | [Native File Dialogs] Improve filter list handling, add selected filter to the callback.
| * [Native File Dialogs] Improve filter list handling, add selected filter to ↵bruvzg2023-10-031-1/+2
| | | | | | | | the callback.
* | [macOS] Add `about_to_open` and `popup_hide` callback for the global menus, ↵bruvzg2023-10-041-0/+5
|/ | | | move part of logic to the PopupMenu to allow live menu modification.
* [DisplayServer] Add method to estimate window title bar size.bruvzg2023-10-031-0/+1
|
* Merge pull request #63826 from deakcor/dev_clipboardYuri Sizov2023-07-271-0/+2
|\ | | | | | | Add `clipboard_has/get_image` methods to DisplayServer
| * add clipboard get image methods for windows and macosVincent D2023-07-171-0/+2
| | | | | | | | | | Co-Authored-By: RedworkDE <10944644+RedworkDE@users.noreply.github.com> Co-Authored-By: bruvzg <7645683+bruvzg@users.noreply.github.com>
* | [macOS] Implement optional native file selection dialog support for ↵bruvzg2023-07-121-0/+10
| | | | | | | | sandboxed apps.
* | Merge pull request #77993 from bruvzg/key_lbl_from_pYuri Sizov2023-07-121-0/+1
|\ \ | |/ |/| | | Implement DisplayServer.keyboard_get_label_from_physical method.
| * Implement keyboard_get_label_from_physical method.bruvzg2023-06-081-0/+1
| |