summaryrefslogtreecommitdiffstats
path: root/modules/openxr/SCsub
Commit message (Collapse)AuthorAgeFilesLines
* OpenXR: Add support for Wayland on LinuxDavid Snopek2024-10-041-1/+1
|
* SCons: Add unobtrusive type hints in SCons filesThaddeus Crews2024-09-251-0/+1
|
* Add Wayland supportRiteo2024-01-301-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Not everything is yet implemented, either for Godot or personal limitations (I don't have all hardware in the world). A brief list of the most important issues follows: - Single-window only: the `DisplayServer` API doesn't expose enough information for properly creating XDG shell windows. - Very dumb rendering loop: this is very complicated, just know that the low consumption mode is forced to 2000 Hz and some clever hacks are in place to overcome a specific Wayland limitation. This will be improved to the extent possible both downstream and upstream. - Features to implement yet: IME, touch input, native file dialog, drawing tablet (commented out due to a refactor), screen recording. - Mouse passthrough can't be implement through a poly API, we need a rect-based one. - The cursor doesn't yet support fractional scaling. - Auto scale is rounded up when using fractional scaling as we don't have a per-window scale query API (basically we need `DisplayServer::window_get_scale`). - Building with `x11=no wayland=yes opengl=yes openxr=yes` fails. This also adds a new project property and editor setting for selecting the default DisplayServer to start, to allow this backend to start first in exported projects (X11 is still the default for now). The editor setting always overrides the project setting. Special thanks to Drew Devault, toger5, Sebastian Krzyszkowiak, Leandro Benedet Garcia, Subhransu, Yury Zhuravlev and Mara Huldra.
* Cleanup of OpenXR module scons configBastiaan Olij2024-01-251-29/+5
|
* Add support for OpenXR local floor extensionDavid Snopek2024-01-231-0/+1
|
* Add Meta controller extensionBastiaan Olij2024-01-111-0/+1
|
* openxr: Sync with upstream 1.0.31, don't build obsolete dispatch tableRémi Verschelde2023-10-261-1/+1
|
* openxr: Revert to 1.0.28, newer versions crash on Windows/Mingw-GCCRémi Verschelde2023-10-231-1/+0
| | | | | | | | Reverts #82582. Works around #83674. Users tested 1.0.29, 1.0.30, and 1.0.31, which all triggered the same issue, with both mingw-gcc from Fedora 36 and Fedora 39.
* openxr: Sync with upstream 1.0.30Rémi Verschelde2023-10-171-0/+1
|
* Add support for the OpenXR Eye gaze interaction extensionBastiaan Olij2023-10-021-0/+1
| | | | Co-authored-by: Bastiaan Olij <mux213@gmail.com>
* Implement OpenXR Foveated rendering supportBastiaan Olij2023-09-251-0/+2
|
* SCons: Disable C++ exception handlingRémi Verschelde2023-08-161-2/+3
| | | | | | | | | | | | | | | | | | | | Upon investigating the extremely slow MSVC build times in #80513, I noticed that while Godot policy is to never use exceptions, we weren't enforcing it with compiler flags, and thus still included exception handling code and stack unwinding. This is wasteful on multiple aspects: - Binary size: Around 20% binary size reduction with exceptions disabled for both MSVC and GCC binaries. - Compile time: * More than 50% build time reduction with MSVC. * 10% to 25% build time reduction with GCC + LTO. - Performance: Possibly, needs to be benchmarked. Since users may want to re-enable exceptions in their own thirdparty code or the libraries they compile with Godot, this behavior can be toggled with the `disable_exceptions` SCons option, which defaults to true.
* Merge pull request #68259 from konczg/openxr_extension_wrapper_gdextensionYuri Sizov2023-07-271-0/+2
|\ | | | | | | Add GDExtension support for OpenXR extension wrappers
| * Add GDExtension support for OpenXR extension wrappersGabor Koncz2023-07-261-0/+2
| | | | | | | | | | | | | | | | | | This commit adds the classes OpenXRExtensionWrapperExtension and OpenXRAPIExtension that can be used in GDExtensions to define OpenXR extension wrappers. It modifies extension wrapper registration so that they can be registered before OpenXRAPI instantiation (e.g. in core level initialization of GDExtensions). Developed by Migeran (https://migeran.com)
* | Compile OpenXR into MacOS buildBastiaan Olij2023-07-191-1/+6
| |
* | Allow unbundling OpenXR (for Linux distros)Rémi Verschelde2023-06-161-50/+55
|/ | | | | Copy XrMatrix4x4f_CreateProjectionFov to our OpenXRUtil, instead of relying on a private header.
* Add Magic Leap 2 OpenXR Interaction ProfileRon Bessems2023-02-021-0/+1
|
* OpenXR: Add preliminary Pico controller profilersjtdrjgfuzkfg2023-01-061-0/+1
| | | | | | | This commit adds the Pico controller used in the Pico 4 as implemented in current versions of the OpenXR runtime on the device itself. Note that the extension and paths used in this commit might become obsolete once there is official support for the Pico 4 in the OpenXR standard.
* Removed member variables from OpenXRExtensionWrapperBastiaan Olij2023-01-041-0/+3
| | | | | Made extension container in OpenXRAPI static Moved controller meta data into extensions where applicable
* Add support for OpenGL to OpenXRDavid Snopek2022-11-081-0/+2
|
* Adding support for the OpenXR Display Refresh Rate extensionBastiaan Olij2022-10-101-0/+1
|
* Adding getters to RenderTarget and implementing override functionality for XRBastiaan Olij2022-10-051-0/+1
|
* Merge pull request #66242 from akien-mga/scons-unify-tools-targetRémi Verschelde2022-09-301-1/+1
|\
| * SCons: Unify tools/target build type configurationRémi Verschelde2022-09-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implements https://github.com/godotengine/godot-proposals/issues/3371. New `target` presets ==================== The `tools` option is removed and `target` changes to use three new presets, which match the builds users are familiar with. These targets control the default optimization level and enable editor-specific and debugging code: - `editor`: Replaces `tools=yes target=release_debug`. * Defines: `TOOLS_ENABLED`, `DEBUG_ENABLED`, `-O2`/`/O2` - `template_debug`: Replaces `tools=no target=release_debug`. * Defines: `DEBUG_ENABLED`, `-O2`/`/O2` - `template_release`: Replaces `tools=no target=release`. * Defines: `-O3`/`/O2` New `dev_build` option ====================== The previous `target=debug` is now replaced by a separate `dev_build=yes` option, which can be used in combination with either of the three targets, and changes the following: - `dev_build`: Defines `DEV_ENABLED`, disables optimization (`-O0`/`/0d`), enables generating debug symbols, does not define `NDEBUG` so `assert()` works in thirdparty libraries, adds a `.dev` suffix to the binary name. Note: Unlike previously, `dev_build` defaults to off so that users who compile Godot from source get an optimized and small build by default. Engine contributors should now set `dev_build=yes` in their build scripts or IDE configuration manually. Changed binary names ==================== The name of generated binaries and object files are changed too, to follow this format: `godot.<platform>.<target>[.dev][.double].<arch>[.<extra_suffix>][.<ext>]` For example: - `godot.linuxbsd.editor.dev.arm64` - `godot.windows.template_release.double.x86_64.mono.exe` Be sure to update your links/scripts/IDE config accordingly. More flexible `optimize` and `debug_symbols` options ==================================================== The optimization level and whether to generate debug symbols can be further specified with the `optimize` and `debug_symbols` options. So the default values listed above for the various `target` and `dev_build` combinations are indicative and can be replaced when compiling, e.g.: `scons p=linuxbsd target=template_debug dev_build=yes optimize=debug` will make a "debug" export template with dev-only code enabled, `-Og` optimization level for GCC/Clang, and debug symbols. Perfect for debugging complex crashes at runtime in an exported project.
* | Add Passthrough extension wrapperGabor Koncz2022-09-271-0/+1
| |
* | Merge pull request #66282 from BastiaanOlij/openxr_palm_poseRémi Verschelde2022-09-271-0/+1
|\ \ | |/ |/| | | Add OpenXR palm pose extension support
| * Add OpenXR palm pose extension supportBastiaan Olij2022-09-231-0/+1
| |
* | Adding OpenXR hand tracking supportBastiaan Olij2022-09-261-0/+2
| |
* | Dynamic loading of OpenXR Loader on AndroidGergely Kis2022-09-241-28/+33
|/ | | | | | | | | | | | | | | | | | | This change implements dynamic loading of the OpenXR Loader library on Android. If an OpenXR Loader library is not found, Godot will still function with OpenXR disabled. Also, on every platform, the OpenXR symbols are resolved at runtime using xrGetInstanceProcAddr. On Windows and Linux the OpenXR loader is included in the main engine binary. On Android, the OpenXR Loader is not built with the engine. Separately distributed Android plugins will be provided with the correct loader library for each device. Co-authored-by: Gábor Pál Korom <gabor.p.korom@migeran.com> Co-authored-by: Gábor Koncz <gabor.koncz@migeran.com>
* Improve `linuxbsd` headless building, cleanup build scriptsRiteo2022-07-201-1/+5
| | | | | | | | Now the `linuxbsd` platform can be built headlessly (e.g. without X11 development libraries). I also cleaned up some weird (old?) usages of the `env` variable which seem to make no difference and are used nowhere else.
* Adding HTC tracker supportBastiaan Olij2022-06-161-0/+2
|
* CI: Update black formatter and apply changesRémi Verschelde2022-04-051-1/+0
|
* Add action map editor for OpenXRBastiaan Olij2022-04-041-0/+4
|
* Fix typos with codespellRémi Verschelde2022-03-311-1/+1
| | | | | | Using codespell 2.2-dev from current git. Fix a couple incorrect uses of gendered pronouns.
* Implementing OpenXR driverBastiaan Olij2022-02-231-0/+87