summaryrefslogtreecommitdiffstats
path: root/modules/openxr/openxr_api.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@8004c7524fb9f43425c4d6f614410a76678e0f7cSpartan3222024-10-301-6/+6
|\
| * Set clang-format `RemoveSemicolon` rule to `true`Adam Scott2024-10-251-6/+6
| | | | | | | | - Set clang-format `Standard` rule to `c++20`
* | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| |
* | 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>
* Add support for the debug utils extension in OpenXRBastiaan Olij2024-08-271-0/+5
|
* OpenXR: Add support for visibility maskBastiaan Olij2024-08-201-0/+1
|
* Remove our ERR_ON_RENDER_THREAD guard, it is not reliableBastiaan Olij2024-07-091-1/+0
|
* [OpenXR] Fix LOCAL_FLOOR emulation on HTC Vive XR EliteDavid Snopek2024-06-271-2/+10
|
* Improvements to VRS/Foveated renderingBastiaan Olij2024-05-031-0/+4
|
* OpenXR: Change timing of xrWaitFrame and add thread safety features to OpenXRBastiaan Olij2024-05-011-14/+76
|
* OpenXR: Improve swapchain logic and fix swapchain update when render target ↵Bastiaan Olij2024-04-091-8/+25
| | | | multiplier is changed.
* OpenXR: Add refresh rate signal supportBastiaan Olij2024-04-081-0/+1
|
* Add support for OpenXR composition layersDavid Snopek2024-04-041-13/+19
| | | | Co-authored-by: Bastiaan Olij <mux213@gmail.com>
* OpenXR: Allow GDExtensions to provide multiple, ordered composition layersDavid Snopek2024-03-131-0/+9
| | | | Co-authored-by: Bastiaan Olij <mux213@gmail.com>
* clang-tidy: Enforce `modernize-use-nullptr`Thaddeus Crews2024-03-121-1/+1
|
* expose OpenXR hand tracker handlesLogan Lang2024-02-191-0/+2
|
* Merge pull request #87630 from dsnopek/openxr-passthrough-from-gdextensionRémi Verschelde2024-02-031-1/+12
|\ | | | | | | OpenXR: Allow moving vendor passthrough extensions to GDExtension
| * OpenXR: Allow moving vendor passthrough extensions to GDExtensionDavid Snopek2024-02-031-1/+12
| |
* | Merge pull request #87745 from dsnopek/openxr-change-reference-spaceRémi Verschelde2024-02-021-2/+3
|\ \ | |/ |/| | | OpenXR: Allow changing play area mode during active session
| * OpenXR: Allow changing play area mode during active sessionDavid Snopek2024-01-311-2/+3
| |
* | Merge pull request #87546 from dsnopek/openxr-hand-tracking-vendor-extensionsRémi Verschelde2024-01-311-0/+1
|\ \ | |/ |/| | | OpenXR: Make it possible to implement vendor extensions to hand tracking from GDExtension
| * OpenXR: Make it possible to implement vendor extensions to hand tracking ↵David Snopek2024-01-251-0/+1
| | | | | | | | from GDExtension
* | Add support for OpenXR local floor extensionDavid Snopek2024-01-231-2/+8
|/
* OpenXR: Add support for retrieving play areaBastiaan Olij2023-12-111-1/+5
|
* Fixing incorrect swapchain release timingDaniel Castellanos2023-10-051-0/+1
| | | | | | Applied a couple of checks suggested by @dhoverml for when the XrResult is not XR_SUCCESS but is also not a failure. Also simplified checks from @BastiaanOlij feedback.
* Implement OpenXR Foveated rendering supportBastiaan Olij2023-09-251-1/+10
|
* Fix issue with OpenXR environment blend mode not being applied properlyBastiaan Olij2023-09-131-1/+3
|
* Fix various typos with codespellRémi Verschelde2023-09-121-1/+1
| | | | Using 2.2.6.dev180+ge3a2cfbd.
* Properly load multiple action sets in XRFaolan2023-08-091-1/+1
|
* Allow unbundling OpenXR (for Linux distros)Rémi Verschelde2023-06-161-2/+0
| | | | | Copy XrMatrix4x4f_CreateProjectionFov to our OpenXRUtil, instead of relying on a private header.
* Style: Harmonize header includes in modulesRémi Verschelde2023-06-151-7/+6
| | | | | | | | | | | | | | | | | | | | This applies our existing style guide, and adds a new rule to that style guide for modular components such as platform ports and modules: Includes from the platform port or module ("local" includes) should be listed first in their own block using relative paths, before Godot's "core" includes which use "absolute" (project folder relative) paths, and finally thirdparty includes. Includes in `#ifdef`s come after their relevant section, i.e. the overall structure is: - Local includes * Conditional local includes - Core includes * Conditional core includes - Thirdparty includes * Conditional thirdparty includes
* Merge pull request #73558 from Malcolmnixon/render-target-size-multiplierRémi Verschelde2023-04-111-0/+5
|\ | | | | | | Added render target size multiplier option
| * Added render target size multiplier option.Malcolm Nixon2023-02-181-0/+5
| | | | | | | | Fix formatting
* | Add a get_system_info method to XRInterfaceBastiaan Olij2023-03-151-0/+6
|/
* Add XR Environment Blend Mode SupportRon Bessems2023-02-021-1/+10
|
* Convert en_GB spelling to en_US with codespellRémi Verschelde2023-01-231-1/+1
|
* Fixes issue where failed start of OpenXR causes issuesBastiaan Olij2023-01-151-0/+1
|
* OpenXR: Fix initialization warning on Androidrsjtdrjgfuzkfg2023-01-111-0/+1
| | | | | | | This commit adds proper checking for XR_KHR_loader_init support and fixes the warning regarding missing extensions on Android to only appear if neither XR_KHR_loader_init nor XR_KHR_loader_init_android are supported by the runtime.
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* Removed member variables from OpenXRExtensionWrapperBastiaan Olij2023-01-041-9/+7
| | | | | Made extension container in OpenXRAPI static Moved controller meta data into extensions where applicable
* Merge pull request #68528 from BastiaanOlij/openxr_actionmap_changesRémi Verschelde2022-12-131-1/+4
|\ | | | | | | Various fixes for OpenXR action map meta data and editing
| * Various fixes for OpenXR action map meta data and editingBastiaan Olij2022-11-251-1/+4
| |
* | Make submitting depth buffer in OpenXR optionalBastiaan Olij2022-12-061-0/+13
|/
* Filter out HTC OpenXR paths based on extensionBastiaan Olij2022-10-191-2/+1
|
* Adding support for the OpenXR Display Refresh Rate extensionBastiaan Olij2022-10-101-0/+5
|
* Adding getters to RenderTarget and implementing override functionality for XRBastiaan Olij2022-10-051-8/+23
|
* Add Passthrough extension wrapperGabor Koncz2022-09-271-0/+6
|
* Merge pull request #66282 from BastiaanOlij/openxr_palm_poseRémi Verschelde2022-09-271-0/+2
|\ | | | | | | Add OpenXR palm pose extension support
| * Add OpenXR palm pose extension supportBastiaan Olij2022-09-231-0/+2
| |
* | Adding OpenXR hand tracking supportBastiaan Olij2022-09-261-7/+8
| |