summaryrefslogtreecommitdiff
path: root/modules/openxr/openxr_interface.cpp
AgeCommit message (Collapse)Author
2022-06-16Adding HTC tracker supportBastiaan Olij
2022-05-16Replace most uses of Map by HashMapreduz
* Map is unnecessary and inefficient in almost every case. * Replaced by the new HashMap. * Renamed Map to RBMap and Set to RBSet for cases that still make sense (order matters) but use is discouraged. There were very few cases where replacing by HashMap was undesired because keeping the key order was intended. I tried to keep those (as RBMap) as much as possible, but might have missed some. Review appreciated!
2022-03-31Fix typos with codespellRĂ©mi Verschelde
Using codespell 2.2-dev from current git. Fix a couple incorrect uses of gendered pronouns.
2022-03-25Cleanup OpenXR on initialisation failureBastiaan Olij
2022-03-11Only uninitialise OpenXR on destruct if it was initialisedBastiaan Olij
2022-03-10Adding signals and events to OpenXR interfaceBastiaan Olij
Improving interaction profile logic
2022-02-23Implementing OpenXR driverBastiaan Olij