summaryrefslogtreecommitdiffstats
path: root/platform/linuxbsd
Commit message (Collapse)AuthorAgeFilesLines
* Fix remainder of godotengine referencesSpartan3222024-10-311-2/+2
|
* Fix copyright headers referring to GodotSpartan3222024-10-2745-90/+90
|
* Fix Linux desktop filesChen Asraf2024-10-261-1/+1
|
* Rebrand preambles to RedotSpartan3222024-10-1345-0/+90
| | | | | | | | | | | | | | | | | | | | | | | | (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-135-13/+13
|
* Use wayland-egl-core.h instead of wayland-egl.hJoel Winarske2024-09-161-1/+1
| | | | | | | | | -avoid use of transitive wayland include -resolves https://github.com/godotengine/godot/issues/95830 Signed-off-by: Joel Winarske <joel.winarske@gmail.com> (cherry picked from commit 6ce71f0fb0a091cffb6adb4af8ab3f716ad8930b)
* Wayland: Avoid recreating input objects on capability changeRiteo2024-08-091-17/+21
| | | | | | Before, multiple capability events would instantiate the same object over and over as long as its bit was set. This caused issues with hotplug and device suspension.
* [X11] Use motion event button state instead of async state.bruvzg2024-08-011-2/+19
|
* Remove unneeded call in DisplayServerX11 alvinhochun2024-07-251-1/+0
| | | | | X11 does not need setting exclusive flag (it is not implemented). Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com>
* Pass window exclusive and transient properties for subwindow creationAlvin Wong2024-07-252-2/+8
| | | | | | 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.
* Disable FP contraction.bruvzg2024-07-231-0/+2
|
* Wayland: Fix error spam when interacting with decorationsRiteo2024-07-201-15/+17
| | | | | | | Also tried to make tablet handling a bit tidier (less whitespace). That said I'll uniform tablet handling better once we're back in the dev cycle.
* Linux/X11: Fix memory leak from created screen imagesRonald Casili2024-07-181-4/+5
| | | | | | | | | Allocated XImages are improperly free'd with XFree. The X11 documentation says that XImage should use XDestroyImage to free both the image structure and the data pointed to by the image structure. Also fix a potential use-after-free bug.
* Merge pull request #94411 from Riteo/suspending-the-right-wayRémi Verschelde2024-07-171-1/+1
|\ | | | | | | Wayland: Check for suspended flag when unsuspending
| * Wayland: check for suspended flag when unsuspendingRiteo2024-07-161-1/+1
| | | | | | | | | | Before, we would only check for the frame flag, which is unreliable on newer suspension-aware compositors.
* | Wayland: commit surface on window creationRiteo2024-07-151-0/+2
|/ | | | | This is needed for initializing xdg_surfaces when not using libdecor. Now the pure xdg_shell code path should work again.
* Merge pull request #93352 from ↵Rémi Verschelde2024-07-092-0/+21
|\ | | | | | | | | | | Calinou/linuxbsd-controller-no-trackpad-graphics-tablet Fix trackpads and graphics tablets being recognized as controllers on Linux/*BSD
| * Fix trackpads and graphics tablets being recognized as controllers on Linux/*BSDHugo Locurcio2024-07-062-0/+21
| |
* | Wayland: scale relative pointer motionRiteo2024-07-071-0/+5
| | | | | | | | | | Oops, forgot to do that. Motion-dependent stuff should now work properly when using scaled displays.
* | X11: Fix creating RenderingDevice after #93706Rémi Verschelde2024-06-291-0/+1
| | | | | | | | The line was removed by mistake.
* | Improve handling of rendering startup errorsPedro J. Estébanez2024-06-282-3/+16
| |
* | Merge pull request #93682 from dsnopek/fix-text-editor-find-in-files-focus-bugRémi Verschelde2024-06-281-1/+1
|\ \ | | | | | | Fix text editor stealing focus from "Find in Files" dialog on X11
| * | Fix text editor stealing focus from "Find in Files" dialog on X11David Snopek2024-06-271-1/+1
| | |
* | | Wayland: minimize surface commits and limit them to the main threadRiteo2024-06-284-31/+53
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before of this patch, as explained in the usual commented-wall-of-text-longer-than-the-actual-patch-itself™, due to the multithreaded nature of the Wayland thread, it was possible to commit a surface while the renderer was doing stuff, which was _very_ wrong. Initially the consequences of such a sin weren't obvious but, now that explicit synchronization is becoming more and more common, we can't commit a buffer randomly without basically guaranteeing a nasty, nasty crash (and we should have avoided commits altogether in the first place to ensure atomic surface updates). We now only trigger a commit _in the main thread_ when low processor usage mode is on _and_ if we know that we won't be rendering anything as, due to its intermittent nature, it makes "legacy" (pre xdg_wm_base v6) frame callback based suspension quite annoying.
* | Style: Optimize `.svg` files with `svgo`Thaddeus Crews2024-06-232-2/+2
| |
* | [TextServer] Fix get_word_breaks and it uses.bruvzg2024-06-211-1/+7
|/
* Merge pull request #93021 from bruvzg/wl_imeRémi Verschelde2024-06-195-4/+288
|\ | | | | | | [Wayland] Implement IME support.
| * [Wayland] Implement IME support.bruvzg2024-06-115-4/+288
| |
* | Tweak warning messages related to V-Sync on OpenGLHugo Locurcio2024-06-161-1/+1
| | | | | | | | | | | | - Make warnings print only once per session. - Tweak the message to be less confusing, and mention that the issue most likely stems from a graphics driver limitation.
* | Merge pull request #92663 from Riteo/holy-egl-batmanRémi Verschelde2024-06-133-18/+44
|\ \ | | | | | | | | | EGL: Use `EGL_EXT_platform_base` whenever possible
| * | EGL: Use EGL_EXT_platform_base whenever possibleRiteo2024-06-043-18/+44
| | | | | | | | | | | | | | | | | | This avoids any assumption from the driver, which would otherwise select a specific platform and potentially mess up everything, resulting usually in a display server failure.
* | | [X11] Detect XWayland and disable screen capture support.bruvzg2024-06-122-3/+29
| |/ |/|
* | Merge pull request #92843 from anniryynanen/tooltip-in-popupRémi Verschelde2024-06-101-1/+4
|\ \ | | | | | | | | | Stop color picker tooltip from stealing input events
| * | Stop color picker tooltip from stealing input eventsAnni Ryynänen2024-06-061-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Input events go to the tooltip because it's added to `popup_list` in DisplayServer `popup_open`. I think there's no harm in tooltips being omitted from the list, so this commit blocks non-popup windows from being added if they have `FLAG_NO_FOCUS` and `FLAG_MOUSE_PASSTHROUGH`. I'm not happy with this way of detecting tooltips. It'll also catch other windows where this behavior may or may not be wanted. I thought about adding `FLAG_TOOLTIP`, but went with the smaller change for now. Fixes #79500.
* | | Merge pull request #92702 from kleonc/cursor_image_from_atlas_texture_fixRémi Verschelde2024-06-072-11/+4
|\ \ \ | |/ / |/| | | | | Fix creating cursor image from `AtlasTexture`
| * | Fix creating cursor image from AtlasTexturekleonc2024-06-052-11/+4
| |/
* / Use current mouse button state instead of saved values.bruvzg2024-05-312-16/+37
|/
* Merge pull request #92208 from Calinou/linuxbsd-use-nanosleepRémi Verschelde2024-05-303-6/+6
|\ | | | | | | Use `OS::delay_usec()` to avoid using deprecated `usleep()` on Linux
| * Use `OS::delay_usec()` to avoid using deprecated `usleep()` on LinuxHugo Locurcio2024-05-213-6/+6
| | | | | | | | | | | | | | | | | | usleep(3) was declared obsolete in POSIX.1-2001 and removed in POSIX.1-2008. nanosleep(2) was recommended to be used instead. `OS::delay_usec()` internally uses `nanosleep()`. This also uses large number separators for improved readability.
* | Merge pull request #89033 from bruvzg/doc_end_errRémi Verschelde2024-05-283-3/+22
|\ \ | | | | | | | | | [DisplayServer] Add error messages and descriptions to callbacks.
| * | [DisplayServer] Add error messages and descriptions to callbacks.bruvzg2024-05-283-3/+22
| | |
* | | Merge pull request #92458 from bruvzg/dup_clRémi Verschelde2024-05-281-1/+4
|\ \ \ | | | | | | | | | | | | [macOS, X11] Fix duplicate close requests.
| * | | [macOS, X11] Fix duplicate close requests.bruvzg2024-05-281-1/+4
| |/ /
* | | Merge pull request #92353 from Riteo/you-cant-see-meRémi Verschelde2024-05-282-0/+11
|\ \ \ | | | | | | | | | | | | Wayland: Implement `is_window_transparency_available`
| * | | Wayland: Implement is_window_transparency_availableRiteo2024-05-262-0/+11
| | | |
* | | | Merge pull request #92324 from jwinarske/jw/wayland_sowrapRémi Verschelde2024-05-281-0/+3
|\ \ \ \ | |_|/ / |/| | | | | | | Linux: Enable build config `wayland=yes use_sowrap=no`
| * | | Enable build config wayland=yes use_sowrap=noJoel Winarske2024-05-251-0/+3
| |/ / | | | | | | | | | | | | | | | -wayland-egl.h was missing if opengl3=yes (default) Signed-off-by: Joel Winarske <joel.winarske@gmail.com>
* / / Fix build with `vuklan=no` and `d3d12=no` after #91505.bruvzg2024-05-251-1/+2
|/ /
* | [DisplayServer] Add method to check if window transparency is supported and ↵bruvzg2024-05-232-0/+18
| | | | | | | | enabled.
* | Merge pull request #92252 from poiati/fix-wayland-window-classRémi Verschelde2024-05-234-10/+12
|\ \ | | | | | | | | | Properly set window class in Wayland