├── .fpm ├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── .vscode └── tasks.json ├── CMakeLists.txt ├── LICENSE ├── README.md ├── bin ├── build_custom_banner_config.py ├── inject_ua ├── package ├── setup ├── ua.sh ├── user │ ├── install │ └── systemd_start ├── xr_driver_cli ├── xr_driver_setup ├── xr_driver_uninstall └── xr_driver_verify ├── docker-build ├── Dockerfile ├── init.sh ├── run-build.sh └── run-fpm.sh ├── fpm ├── build ├── postinstall ├── postupgrade ├── preinstall └── preuninstall ├── include ├── buffer.h ├── config.h ├── curl.h ├── devices.h ├── devices │ ├── rayneo.h │ ├── rokid.h │ ├── viture.h │ └── xreal.h ├── driver.h ├── epoch.h ├── features │ ├── breezy_desktop.h │ ├── sbs.h │ └── smooth_follow.h ├── files.h ├── imu.h ├── ipc.h ├── logging.h ├── memory.h ├── multitap.h ├── outputs.h ├── plugins.h ├── plugins │ ├── breezy_desktop.h │ ├── custom_banner.h │ ├── device_license.h │ ├── gamescope_reshade_wayland.h │ ├── metrics.h │ ├── neck_saver.h │ ├── opentrack_listener.h │ ├── opentrack_source.h │ ├── sideview.h │ ├── smooth_follow.h │ └── virtual_display.h ├── runtime_context.h ├── sdks │ ├── rayneo.h │ ├── rokid.h │ └── viture_one.h ├── state.h ├── strings.h ├── system.h ├── version.h.in └── wl_client │ └── gamescope_reshade.h ├── lib ├── aarch64 │ └── libviture_one_sdk.a └── x86_64 │ ├── libGlassSDK.so │ ├── libRayNeoXRMiniSDK.so │ └── libviture_one_sdk.a ├── license_public_key.pem ├── modules └── rayneoSDKHeaders │ ├── base │ ├── FXRDebug.h │ ├── FXRError.h │ ├── FXRMacro.h │ └── FXRType.h │ ├── device │ ├── XRDevice.h │ └── usb │ │ ├── XRDeviceState.h │ │ └── XRPacket.h │ ├── interface │ ├── FXRApi.h │ ├── FXRClient.h │ └── FXRServer.h │ ├── ipc │ └── FXRProtocol.h │ └── openxr │ ├── openxr.h │ ├── openxr_platform.h │ ├── openxr_platform_defines.h │ ├── openxr_reflection.h │ ├── openxr_reflection_parent_structs.h │ └── openxr_reflection_structs.h ├── src ├── buffer.c ├── config.c ├── curl.c ├── devices.c ├── devices │ ├── rayneo.c │ ├── rokid.c │ ├── viture.c │ └── xreal.c ├── driver.c ├── epoch.c ├── features │ ├── breezy_desktop.c │ ├── sbs.c │ └── smooth_follow.c ├── files.c ├── imu.c ├── ipc.c ├── logging.c ├── multitap.c ├── outputs.c ├── plugins.c ├── plugins │ ├── breezy_desktop.c │ ├── custom_banner.c │ ├── device_license.c │ ├── gamescope_reshade_wayland.c │ ├── metrics.c │ ├── neck_saver.c │ ├── opentrack_listener.c │ ├── opentrack_source.c │ ├── sideview.c │ ├── smooth_follow.c │ └── virtual_display.c ├── runtime_context.c ├── state.c ├── strings.c ├── system.c └── wl_client │ └── gamescope_reshade.c ├── systemd └── xr-driver.service └── udev ├── 70-rayneo-xr.rules ├── 70-rokid-xr.rules ├── 70-uinput-xr.rules ├── 70-viture-xr.rules └── 70-xreal-xr.rules /.fpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/.fpm -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/README.md -------------------------------------------------------------------------------- /bin/build_custom_banner_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/bin/build_custom_banner_config.py -------------------------------------------------------------------------------- /bin/inject_ua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/bin/inject_ua -------------------------------------------------------------------------------- /bin/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/bin/package -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/ua.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/bin/ua.sh -------------------------------------------------------------------------------- /bin/user/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/bin/user/install -------------------------------------------------------------------------------- /bin/user/systemd_start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/bin/user/systemd_start -------------------------------------------------------------------------------- /bin/xr_driver_cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/bin/xr_driver_cli -------------------------------------------------------------------------------- /bin/xr_driver_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/bin/xr_driver_setup -------------------------------------------------------------------------------- /bin/xr_driver_uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/bin/xr_driver_uninstall -------------------------------------------------------------------------------- /bin/xr_driver_verify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/bin/xr_driver_verify -------------------------------------------------------------------------------- /docker-build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/docker-build/Dockerfile -------------------------------------------------------------------------------- /docker-build/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/docker-build/init.sh -------------------------------------------------------------------------------- /docker-build/run-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/docker-build/run-build.sh -------------------------------------------------------------------------------- /docker-build/run-fpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/docker-build/run-fpm.sh -------------------------------------------------------------------------------- /fpm/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/fpm/build -------------------------------------------------------------------------------- /fpm/postinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/fpm/postinstall -------------------------------------------------------------------------------- /fpm/postupgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/fpm/postupgrade -------------------------------------------------------------------------------- /fpm/preinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/fpm/preinstall -------------------------------------------------------------------------------- /fpm/preuninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/fpm/preuninstall -------------------------------------------------------------------------------- /include/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/buffer.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/config.h -------------------------------------------------------------------------------- /include/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/curl.h -------------------------------------------------------------------------------- /include/devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/devices.h -------------------------------------------------------------------------------- /include/devices/rayneo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/devices/rayneo.h -------------------------------------------------------------------------------- /include/devices/rokid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/devices/rokid.h -------------------------------------------------------------------------------- /include/devices/viture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/devices/viture.h -------------------------------------------------------------------------------- /include/devices/xreal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/devices/xreal.h -------------------------------------------------------------------------------- /include/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/driver.h -------------------------------------------------------------------------------- /include/epoch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | uint64_t get_epoch_time_ms(); -------------------------------------------------------------------------------- /include/features/breezy_desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/features/breezy_desktop.h -------------------------------------------------------------------------------- /include/features/sbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/features/sbs.h -------------------------------------------------------------------------------- /include/features/smooth_follow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/features/smooth_follow.h -------------------------------------------------------------------------------- /include/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/files.h -------------------------------------------------------------------------------- /include/imu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/imu.h -------------------------------------------------------------------------------- /include/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/ipc.h -------------------------------------------------------------------------------- /include/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/logging.h -------------------------------------------------------------------------------- /include/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/memory.h -------------------------------------------------------------------------------- /include/multitap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/multitap.h -------------------------------------------------------------------------------- /include/outputs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/outputs.h -------------------------------------------------------------------------------- /include/plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/plugins.h -------------------------------------------------------------------------------- /include/plugins/breezy_desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/plugins/breezy_desktop.h -------------------------------------------------------------------------------- /include/plugins/custom_banner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/plugins/custom_banner.h -------------------------------------------------------------------------------- /include/plugins/device_license.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/plugins/device_license.h -------------------------------------------------------------------------------- /include/plugins/gamescope_reshade_wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/plugins/gamescope_reshade_wayland.h -------------------------------------------------------------------------------- /include/plugins/metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/plugins/metrics.h -------------------------------------------------------------------------------- /include/plugins/neck_saver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/plugins/neck_saver.h -------------------------------------------------------------------------------- /include/plugins/opentrack_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/plugins/opentrack_listener.h -------------------------------------------------------------------------------- /include/plugins/opentrack_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/plugins/opentrack_source.h -------------------------------------------------------------------------------- /include/plugins/sideview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/plugins/sideview.h -------------------------------------------------------------------------------- /include/plugins/smooth_follow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/plugins/smooth_follow.h -------------------------------------------------------------------------------- /include/plugins/virtual_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/plugins/virtual_display.h -------------------------------------------------------------------------------- /include/runtime_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/runtime_context.h -------------------------------------------------------------------------------- /include/sdks/rayneo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/sdks/rayneo.h -------------------------------------------------------------------------------- /include/sdks/rokid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/sdks/rokid.h -------------------------------------------------------------------------------- /include/sdks/viture_one.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/sdks/viture_one.h -------------------------------------------------------------------------------- /include/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/state.h -------------------------------------------------------------------------------- /include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/strings.h -------------------------------------------------------------------------------- /include/system.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | char *get_hardware_id(); -------------------------------------------------------------------------------- /include/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/version.h.in -------------------------------------------------------------------------------- /include/wl_client/gamescope_reshade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/include/wl_client/gamescope_reshade.h -------------------------------------------------------------------------------- /lib/aarch64/libviture_one_sdk.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/lib/aarch64/libviture_one_sdk.a -------------------------------------------------------------------------------- /lib/x86_64/libGlassSDK.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/lib/x86_64/libGlassSDK.so -------------------------------------------------------------------------------- /lib/x86_64/libRayNeoXRMiniSDK.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/lib/x86_64/libRayNeoXRMiniSDK.so -------------------------------------------------------------------------------- /lib/x86_64/libviture_one_sdk.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/lib/x86_64/libviture_one_sdk.a -------------------------------------------------------------------------------- /license_public_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/license_public_key.pem -------------------------------------------------------------------------------- /modules/rayneoSDKHeaders/base/FXRDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/modules/rayneoSDKHeaders/base/FXRDebug.h -------------------------------------------------------------------------------- /modules/rayneoSDKHeaders/base/FXRError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/modules/rayneoSDKHeaders/base/FXRError.h -------------------------------------------------------------------------------- /modules/rayneoSDKHeaders/base/FXRMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/modules/rayneoSDKHeaders/base/FXRMacro.h -------------------------------------------------------------------------------- /modules/rayneoSDKHeaders/base/FXRType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/modules/rayneoSDKHeaders/base/FXRType.h -------------------------------------------------------------------------------- /modules/rayneoSDKHeaders/device/XRDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/modules/rayneoSDKHeaders/device/XRDevice.h -------------------------------------------------------------------------------- /modules/rayneoSDKHeaders/device/usb/XRDeviceState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/modules/rayneoSDKHeaders/device/usb/XRDeviceState.h -------------------------------------------------------------------------------- /modules/rayneoSDKHeaders/device/usb/XRPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/modules/rayneoSDKHeaders/device/usb/XRPacket.h -------------------------------------------------------------------------------- /modules/rayneoSDKHeaders/interface/FXRApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/modules/rayneoSDKHeaders/interface/FXRApi.h -------------------------------------------------------------------------------- /modules/rayneoSDKHeaders/interface/FXRClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/modules/rayneoSDKHeaders/interface/FXRClient.h -------------------------------------------------------------------------------- /modules/rayneoSDKHeaders/interface/FXRServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/modules/rayneoSDKHeaders/interface/FXRServer.h -------------------------------------------------------------------------------- /modules/rayneoSDKHeaders/ipc/FXRProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/modules/rayneoSDKHeaders/ipc/FXRProtocol.h -------------------------------------------------------------------------------- /modules/rayneoSDKHeaders/openxr/openxr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/modules/rayneoSDKHeaders/openxr/openxr.h -------------------------------------------------------------------------------- /modules/rayneoSDKHeaders/openxr/openxr_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/modules/rayneoSDKHeaders/openxr/openxr_platform.h -------------------------------------------------------------------------------- /modules/rayneoSDKHeaders/openxr/openxr_platform_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/modules/rayneoSDKHeaders/openxr/openxr_platform_defines.h -------------------------------------------------------------------------------- /modules/rayneoSDKHeaders/openxr/openxr_reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/modules/rayneoSDKHeaders/openxr/openxr_reflection.h -------------------------------------------------------------------------------- /modules/rayneoSDKHeaders/openxr/openxr_reflection_parent_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/modules/rayneoSDKHeaders/openxr/openxr_reflection_parent_structs.h -------------------------------------------------------------------------------- /modules/rayneoSDKHeaders/openxr/openxr_reflection_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/modules/rayneoSDKHeaders/openxr/openxr_reflection_structs.h -------------------------------------------------------------------------------- /src/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/buffer.c -------------------------------------------------------------------------------- /src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/config.c -------------------------------------------------------------------------------- /src/curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/curl.c -------------------------------------------------------------------------------- /src/devices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/devices.c -------------------------------------------------------------------------------- /src/devices/rayneo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/devices/rayneo.c -------------------------------------------------------------------------------- /src/devices/rokid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/devices/rokid.c -------------------------------------------------------------------------------- /src/devices/viture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/devices/viture.c -------------------------------------------------------------------------------- /src/devices/xreal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/devices/xreal.c -------------------------------------------------------------------------------- /src/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/driver.c -------------------------------------------------------------------------------- /src/epoch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/epoch.c -------------------------------------------------------------------------------- /src/features/breezy_desktop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/features/breezy_desktop.c -------------------------------------------------------------------------------- /src/features/sbs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/features/sbs.c -------------------------------------------------------------------------------- /src/features/smooth_follow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/features/smooth_follow.c -------------------------------------------------------------------------------- /src/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/files.c -------------------------------------------------------------------------------- /src/imu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/imu.c -------------------------------------------------------------------------------- /src/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/ipc.c -------------------------------------------------------------------------------- /src/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/logging.c -------------------------------------------------------------------------------- /src/multitap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/multitap.c -------------------------------------------------------------------------------- /src/outputs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/outputs.c -------------------------------------------------------------------------------- /src/plugins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/plugins.c -------------------------------------------------------------------------------- /src/plugins/breezy_desktop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/plugins/breezy_desktop.c -------------------------------------------------------------------------------- /src/plugins/custom_banner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/plugins/custom_banner.c -------------------------------------------------------------------------------- /src/plugins/device_license.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/plugins/device_license.c -------------------------------------------------------------------------------- /src/plugins/gamescope_reshade_wayland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/plugins/gamescope_reshade_wayland.c -------------------------------------------------------------------------------- /src/plugins/metrics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/plugins/metrics.c -------------------------------------------------------------------------------- /src/plugins/neck_saver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/plugins/neck_saver.c -------------------------------------------------------------------------------- /src/plugins/opentrack_listener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/plugins/opentrack_listener.c -------------------------------------------------------------------------------- /src/plugins/opentrack_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/plugins/opentrack_source.c -------------------------------------------------------------------------------- /src/plugins/sideview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/plugins/sideview.c -------------------------------------------------------------------------------- /src/plugins/smooth_follow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/plugins/smooth_follow.c -------------------------------------------------------------------------------- /src/plugins/virtual_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/plugins/virtual_display.c -------------------------------------------------------------------------------- /src/runtime_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/runtime_context.c -------------------------------------------------------------------------------- /src/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/state.c -------------------------------------------------------------------------------- /src/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/strings.c -------------------------------------------------------------------------------- /src/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/system.c -------------------------------------------------------------------------------- /src/wl_client/gamescope_reshade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/src/wl_client/gamescope_reshade.c -------------------------------------------------------------------------------- /systemd/xr-driver.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/systemd/xr-driver.service -------------------------------------------------------------------------------- /udev/70-rayneo-xr.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/udev/70-rayneo-xr.rules -------------------------------------------------------------------------------- /udev/70-rokid-xr.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/udev/70-rokid-xr.rules -------------------------------------------------------------------------------- /udev/70-uinput-xr.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/udev/70-uinput-xr.rules -------------------------------------------------------------------------------- /udev/70-viture-xr.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/udev/70-viture-xr.rules -------------------------------------------------------------------------------- /udev/70-xreal-xr.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheaney/XRLinuxDriver/HEAD/udev/70-xreal-xr.rules --------------------------------------------------------------------------------