├── .gitignore ├── LICENSE ├── Paths.props ├── README.md ├── driver_leap.sln ├── drivers └── driver_leap │ ├── GestureMatcher.cpp │ ├── GestureMatcher.h │ ├── dllmain.cpp │ ├── driver_leap.cpp │ ├── driver_leap.h │ ├── driver_leap.vcxproj │ ├── driver_leap.vcxproj.filters │ ├── pch.cpp │ ├── pch.h │ └── targetver.h └── tools ├── config_tool ├── config_tool.cpp ├── config_tool.vcxproj └── config_tool.vcxproj.filters ├── gesture_checker ├── gesture_checker.cpp ├── gesture_checker.vcxproj └── gesture_checker.vcxproj.filters ├── leap_installer ├── leap.vrsettings └── leap_installer.vdproj └── leap_monitor ├── Resource.h ├── leap_monitor.cpp ├── leap_monitor.h ├── leap_monitor.ico ├── leap_monitor.rc ├── leap_monitor.vcxproj ├── leap_monitor.vcxproj.filters ├── small.ico ├── stdafx.cpp ├── stdafx.h └── targetver.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/LICENSE -------------------------------------------------------------------------------- /Paths.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/Paths.props -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/README.md -------------------------------------------------------------------------------- /driver_leap.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/driver_leap.sln -------------------------------------------------------------------------------- /drivers/driver_leap/GestureMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/drivers/driver_leap/GestureMatcher.cpp -------------------------------------------------------------------------------- /drivers/driver_leap/GestureMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/drivers/driver_leap/GestureMatcher.h -------------------------------------------------------------------------------- /drivers/driver_leap/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/drivers/driver_leap/dllmain.cpp -------------------------------------------------------------------------------- /drivers/driver_leap/driver_leap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/drivers/driver_leap/driver_leap.cpp -------------------------------------------------------------------------------- /drivers/driver_leap/driver_leap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/drivers/driver_leap/driver_leap.h -------------------------------------------------------------------------------- /drivers/driver_leap/driver_leap.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/drivers/driver_leap/driver_leap.vcxproj -------------------------------------------------------------------------------- /drivers/driver_leap/driver_leap.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/drivers/driver_leap/driver_leap.vcxproj.filters -------------------------------------------------------------------------------- /drivers/driver_leap/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /drivers/driver_leap/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/drivers/driver_leap/pch.h -------------------------------------------------------------------------------- /drivers/driver_leap/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/drivers/driver_leap/targetver.h -------------------------------------------------------------------------------- /tools/config_tool/config_tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/tools/config_tool/config_tool.cpp -------------------------------------------------------------------------------- /tools/config_tool/config_tool.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/tools/config_tool/config_tool.vcxproj -------------------------------------------------------------------------------- /tools/config_tool/config_tool.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/tools/config_tool/config_tool.vcxproj.filters -------------------------------------------------------------------------------- /tools/gesture_checker/gesture_checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/tools/gesture_checker/gesture_checker.cpp -------------------------------------------------------------------------------- /tools/gesture_checker/gesture_checker.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/tools/gesture_checker/gesture_checker.vcxproj -------------------------------------------------------------------------------- /tools/gesture_checker/gesture_checker.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/tools/gesture_checker/gesture_checker.vcxproj.filters -------------------------------------------------------------------------------- /tools/leap_installer/leap.vrsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/tools/leap_installer/leap.vrsettings -------------------------------------------------------------------------------- /tools/leap_installer/leap_installer.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/tools/leap_installer/leap_installer.vdproj -------------------------------------------------------------------------------- /tools/leap_monitor/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/tools/leap_monitor/Resource.h -------------------------------------------------------------------------------- /tools/leap_monitor/leap_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/tools/leap_monitor/leap_monitor.cpp -------------------------------------------------------------------------------- /tools/leap_monitor/leap_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/tools/leap_monitor/leap_monitor.h -------------------------------------------------------------------------------- /tools/leap_monitor/leap_monitor.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/tools/leap_monitor/leap_monitor.ico -------------------------------------------------------------------------------- /tools/leap_monitor/leap_monitor.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/tools/leap_monitor/leap_monitor.rc -------------------------------------------------------------------------------- /tools/leap_monitor/leap_monitor.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/tools/leap_monitor/leap_monitor.vcxproj -------------------------------------------------------------------------------- /tools/leap_monitor/leap_monitor.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/tools/leap_monitor/leap_monitor.vcxproj.filters -------------------------------------------------------------------------------- /tools/leap_monitor/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/tools/leap_monitor/small.ico -------------------------------------------------------------------------------- /tools/leap_monitor/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/tools/leap_monitor/stdafx.cpp -------------------------------------------------------------------------------- /tools/leap_monitor/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/tools/leap_monitor/stdafx.h -------------------------------------------------------------------------------- /tools/leap_monitor/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbuchner1/driver_leap/HEAD/tools/leap_monitor/targetver.h --------------------------------------------------------------------------------