├── .github ├── FUNDING.yml └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CMakeSettings.json ├── LICENSE ├── README.md ├── dev-resources └── install.nsi ├── dist ├── LICENSE.txt └── leapify │ ├── driver.vrdrivermanifest │ └── resources │ ├── driver.vrresources │ ├── icons │ ├── left_hand_status_error.b4bfb144.png │ ├── left_hand_status_error.png │ ├── left_hand_status_error@2x.png │ ├── left_hand_status_off.6e6c89c9.png │ ├── left_hand_status_off.b4bfb144.png │ ├── left_hand_status_off.png │ ├── left_hand_status_off@2x.png │ ├── left_hand_status_ready.b4bfb144.png │ ├── left_hand_status_ready.png │ ├── left_hand_status_ready@2x.png │ ├── left_hand_status_ready_alert.b4bfb144.png │ ├── left_hand_status_ready_alert.png │ ├── left_hand_status_ready_alert@2x.png │ ├── left_hand_status_standby.png │ ├── left_hand_status_standby@2x.png │ ├── left_hand_status_standby_alert.png │ ├── left_hand_status_standby_alert@2x.png │ ├── right_hand_status_error.b4bfb144.png │ ├── right_hand_status_error.png │ ├── right_hand_status_error@2x.png │ ├── right_hand_status_off.6e6c89c9.png │ ├── right_hand_status_off.b4bfb144.png │ ├── right_hand_status_off.png │ ├── right_hand_status_off@2x.png │ ├── right_hand_status_ready.b4bfb144.png │ ├── right_hand_status_ready.png │ ├── right_hand_status_ready@2x.png │ ├── right_hand_status_ready_alert.b4bfb144.png │ ├── right_hand_status_ready_alert.png │ ├── right_hand_status_ready_alert@2x.png │ ├── right_hand_status_standby.png │ ├── right_hand_status_standby@2x.png │ ├── right_hand_status_standby_alert.png │ └── right_hand_status_standby_alert@2x.png │ ├── input │ ├── index_controller_profile.json │ ├── index_controller_remapping.json │ ├── knuckles_ev1_profile.json │ └── legacy_bindings_index_controller.json │ ├── localization │ ├── localization.json │ └── localization_en_us.json │ ├── rendermodels │ ├── ultraleap_hand_left │ │ ├── gnomon-diff.png │ │ ├── gnomon.mtl │ │ ├── gnomon.obj │ │ └── ultraleap_hand_left.json │ └── ultraleap_hand_right │ │ ├── gnomon-diff.png │ │ ├── gnomon.mtl │ │ ├── gnomon.obj │ │ └── ultraleap_hand_right.json │ └── settings │ ├── default.vrsettings │ └── settingsschema.vrsettings ├── src ├── InterfaceHook.cpp ├── InterfaceHook.hpp ├── LeapConnection.cpp ├── LeapConnection.hpp ├── Math.hpp ├── Singleton.hpp ├── StateManager.hpp ├── TrackedController.cpp ├── TrackedController.hpp ├── TrackedDeviceProvider.cpp ├── TrackedDeviceProvider.hpp └── main.cpp ├── test.sh └── vendor └── LeapSDK ├── LICENSE.rft ├── ThirdPartyNotices.md ├── include └── LeapC.h └── lib ├── cmake └── LeapSDK │ ├── leapsdk-config.cmake │ └── leapsdk-configVersion.cmake └── x64 ├── LICENSE.protobuf ├── LeapC.dll ├── LeapC.lib ├── cmake ├── LeapCTargets-relwithdebinfo.cmake └── LeapCTargets.cmake └── libLeapC.so /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: Nyabsi 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | out 3 | .vs -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/CMakeSettings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/README.md -------------------------------------------------------------------------------- /dev-resources/install.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dev-resources/install.nsi -------------------------------------------------------------------------------- /dist/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/LICENSE.txt -------------------------------------------------------------------------------- /dist/leapify/driver.vrdrivermanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/driver.vrdrivermanifest -------------------------------------------------------------------------------- /dist/leapify/resources/driver.vrresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/driver.vrresources -------------------------------------------------------------------------------- /dist/leapify/resources/icons/left_hand_status_error.b4bfb144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/left_hand_status_error.b4bfb144.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/left_hand_status_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/left_hand_status_error.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/left_hand_status_error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/left_hand_status_error@2x.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/left_hand_status_off.6e6c89c9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/left_hand_status_off.6e6c89c9.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/left_hand_status_off.b4bfb144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/left_hand_status_off.b4bfb144.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/left_hand_status_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/left_hand_status_off.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/left_hand_status_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/left_hand_status_off@2x.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/left_hand_status_ready.b4bfb144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/left_hand_status_ready.b4bfb144.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/left_hand_status_ready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/left_hand_status_ready.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/left_hand_status_ready@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/left_hand_status_ready@2x.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/left_hand_status_ready_alert.b4bfb144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/left_hand_status_ready_alert.b4bfb144.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/left_hand_status_ready_alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/left_hand_status_ready_alert.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/left_hand_status_ready_alert@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/left_hand_status_ready_alert@2x.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/left_hand_status_standby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/left_hand_status_standby.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/left_hand_status_standby@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/left_hand_status_standby@2x.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/left_hand_status_standby_alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/left_hand_status_standby_alert.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/left_hand_status_standby_alert@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/left_hand_status_standby_alert@2x.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/right_hand_status_error.b4bfb144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/right_hand_status_error.b4bfb144.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/right_hand_status_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/right_hand_status_error.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/right_hand_status_error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/right_hand_status_error@2x.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/right_hand_status_off.6e6c89c9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/right_hand_status_off.6e6c89c9.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/right_hand_status_off.b4bfb144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/right_hand_status_off.b4bfb144.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/right_hand_status_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/right_hand_status_off.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/right_hand_status_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/right_hand_status_off@2x.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/right_hand_status_ready.b4bfb144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/right_hand_status_ready.b4bfb144.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/right_hand_status_ready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/right_hand_status_ready.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/right_hand_status_ready@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/right_hand_status_ready@2x.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/right_hand_status_ready_alert.b4bfb144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/right_hand_status_ready_alert.b4bfb144.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/right_hand_status_ready_alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/right_hand_status_ready_alert.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/right_hand_status_ready_alert@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/right_hand_status_ready_alert@2x.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/right_hand_status_standby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/right_hand_status_standby.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/right_hand_status_standby@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/right_hand_status_standby@2x.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/right_hand_status_standby_alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/right_hand_status_standby_alert.png -------------------------------------------------------------------------------- /dist/leapify/resources/icons/right_hand_status_standby_alert@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/icons/right_hand_status_standby_alert@2x.png -------------------------------------------------------------------------------- /dist/leapify/resources/input/index_controller_profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/input/index_controller_profile.json -------------------------------------------------------------------------------- /dist/leapify/resources/input/index_controller_remapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/input/index_controller_remapping.json -------------------------------------------------------------------------------- /dist/leapify/resources/input/knuckles_ev1_profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/input/knuckles_ev1_profile.json -------------------------------------------------------------------------------- /dist/leapify/resources/input/legacy_bindings_index_controller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/input/legacy_bindings_index_controller.json -------------------------------------------------------------------------------- /dist/leapify/resources/localization/localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/localization/localization.json -------------------------------------------------------------------------------- /dist/leapify/resources/localization/localization_en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/localization/localization_en_us.json -------------------------------------------------------------------------------- /dist/leapify/resources/rendermodels/ultraleap_hand_left/gnomon-diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/rendermodels/ultraleap_hand_left/gnomon-diff.png -------------------------------------------------------------------------------- /dist/leapify/resources/rendermodels/ultraleap_hand_left/gnomon.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/rendermodels/ultraleap_hand_left/gnomon.mtl -------------------------------------------------------------------------------- /dist/leapify/resources/rendermodels/ultraleap_hand_left/gnomon.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/rendermodels/ultraleap_hand_left/gnomon.obj -------------------------------------------------------------------------------- /dist/leapify/resources/rendermodels/ultraleap_hand_left/ultraleap_hand_left.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/rendermodels/ultraleap_hand_left/ultraleap_hand_left.json -------------------------------------------------------------------------------- /dist/leapify/resources/rendermodels/ultraleap_hand_right/gnomon-diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/rendermodels/ultraleap_hand_right/gnomon-diff.png -------------------------------------------------------------------------------- /dist/leapify/resources/rendermodels/ultraleap_hand_right/gnomon.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/rendermodels/ultraleap_hand_right/gnomon.mtl -------------------------------------------------------------------------------- /dist/leapify/resources/rendermodels/ultraleap_hand_right/gnomon.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/rendermodels/ultraleap_hand_right/gnomon.obj -------------------------------------------------------------------------------- /dist/leapify/resources/rendermodels/ultraleap_hand_right/ultraleap_hand_right.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/rendermodels/ultraleap_hand_right/ultraleap_hand_right.json -------------------------------------------------------------------------------- /dist/leapify/resources/settings/default.vrsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/settings/default.vrsettings -------------------------------------------------------------------------------- /dist/leapify/resources/settings/settingsschema.vrsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/dist/leapify/resources/settings/settingsschema.vrsettings -------------------------------------------------------------------------------- /src/InterfaceHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/src/InterfaceHook.cpp -------------------------------------------------------------------------------- /src/InterfaceHook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/src/InterfaceHook.hpp -------------------------------------------------------------------------------- /src/LeapConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/src/LeapConnection.cpp -------------------------------------------------------------------------------- /src/LeapConnection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/src/LeapConnection.hpp -------------------------------------------------------------------------------- /src/Math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/src/Math.hpp -------------------------------------------------------------------------------- /src/Singleton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/src/Singleton.hpp -------------------------------------------------------------------------------- /src/StateManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/src/StateManager.hpp -------------------------------------------------------------------------------- /src/TrackedController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/src/TrackedController.cpp -------------------------------------------------------------------------------- /src/TrackedController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/src/TrackedController.hpp -------------------------------------------------------------------------------- /src/TrackedDeviceProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/src/TrackedDeviceProvider.cpp -------------------------------------------------------------------------------- /src/TrackedDeviceProvider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/src/TrackedDeviceProvider.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/src/main.cpp -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/test.sh -------------------------------------------------------------------------------- /vendor/LeapSDK/LICENSE.rft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/vendor/LeapSDK/LICENSE.rft -------------------------------------------------------------------------------- /vendor/LeapSDK/ThirdPartyNotices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/vendor/LeapSDK/ThirdPartyNotices.md -------------------------------------------------------------------------------- /vendor/LeapSDK/include/LeapC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/vendor/LeapSDK/include/LeapC.h -------------------------------------------------------------------------------- /vendor/LeapSDK/lib/cmake/LeapSDK/leapsdk-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/vendor/LeapSDK/lib/cmake/LeapSDK/leapsdk-config.cmake -------------------------------------------------------------------------------- /vendor/LeapSDK/lib/cmake/LeapSDK/leapsdk-configVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/vendor/LeapSDK/lib/cmake/LeapSDK/leapsdk-configVersion.cmake -------------------------------------------------------------------------------- /vendor/LeapSDK/lib/x64/LICENSE.protobuf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/vendor/LeapSDK/lib/x64/LICENSE.protobuf -------------------------------------------------------------------------------- /vendor/LeapSDK/lib/x64/LeapC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/vendor/LeapSDK/lib/x64/LeapC.dll -------------------------------------------------------------------------------- /vendor/LeapSDK/lib/x64/LeapC.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/vendor/LeapSDK/lib/x64/LeapC.lib -------------------------------------------------------------------------------- /vendor/LeapSDK/lib/x64/cmake/LeapCTargets-relwithdebinfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/vendor/LeapSDK/lib/x64/cmake/LeapCTargets-relwithdebinfo.cmake -------------------------------------------------------------------------------- /vendor/LeapSDK/lib/x64/cmake/LeapCTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/vendor/LeapSDK/lib/x64/cmake/LeapCTargets.cmake -------------------------------------------------------------------------------- /vendor/LeapSDK/lib/x64/libLeapC.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyabsi/driver_leapify/HEAD/vendor/LeapSDK/lib/x64/libLeapC.so --------------------------------------------------------------------------------