├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── bin32 ├── ivrapplications │ └── .gitkeep ├── ivrchaperone │ └── .gitkeep ├── ivrchaperonesetup │ └── .gitkeep ├── ivrcompositor │ └── .gitkeep ├── ivrdrivermanager │ └── .gitkeep ├── ivrextendeddisplay │ └── .gitkeep ├── ivrnotifications │ └── .gitkeep ├── ivroverlay │ └── .gitkeep ├── ivrrendermodels │ └── .gitkeep ├── ivrresources │ └── .gitkeep ├── ivrscreenshots │ └── .gitkeep ├── ivrsettings │ └── .gitkeep ├── ivrsystem │ └── .gitkeep └── ivrtrackedcamera │ └── .gitkeep ├── bin64 ├── ivrapplications │ └── .gitkeep ├── ivrchaperone │ └── .gitkeep ├── ivrchaperonesetup │ └── .gitkeep ├── ivrcompositor │ └── .gitkeep ├── ivrdrivermanager │ └── .gitkeep ├── ivrextendeddisplay │ └── .gitkeep ├── ivrnotifications │ └── .gitkeep ├── ivroverlay │ └── .gitkeep ├── ivrrendermodels │ └── .gitkeep ├── ivrresources │ └── .gitkeep ├── ivrscreenshots │ └── .gitkeep ├── ivrsettings │ └── .gitkeep ├── ivrsystem │ └── .gitkeep └── ivrtrackedcamera │ └── .gitkeep └── src ├── common.h ├── d3dproxy.cpp ├── d3dproxy.h ├── ivrapplications ├── ivrapplications.h ├── ivrapplications_002.cpp ├── ivrapplications_003.cpp ├── ivrapplications_004.cpp ├── ivrapplications_005.cpp └── ivrapplications_006.cpp ├── ivrchaperone ├── ivrchaperone.h └── ivrchaperone_003.cpp ├── ivrchaperonesetup ├── ivrchaperonesetup.h ├── ivrchaperonesetup_004.cpp └── ivrchaperonesetup_005.cpp ├── ivrcompositor ├── ivrcompositor.h ├── ivrcompositor_011.cpp ├── ivrcompositor_012.cpp ├── ivrcompositor_013.cpp ├── ivrcompositor_014.cpp ├── ivrcompositor_015.cpp ├── ivrcompositor_016.cpp ├── ivrcompositor_018.cpp ├── ivrcompositor_019.cpp ├── ivrcompositor_020.cpp ├── ivrcompositor_021.cpp └── ivrcompositor_022.cpp ├── ivrdrivermanager ├── ivrdrivermanager.h └── ivrdrivermanager_001.cpp ├── ivrextendeddisplay ├── ivrextendeddisplay.h └── ivrextendeddisplay_001.cpp ├── ivrnotifications ├── ivrnotifications.h └── ivrnotifications_002.cpp ├── ivroverlay ├── ivroverlay.h ├── ivroverlay_008.cpp ├── ivroverlay_010.cpp ├── ivroverlay_011.cpp ├── ivroverlay_012.cpp ├── ivroverlay_013.cpp ├── ivroverlay_014.cpp ├── ivroverlay_016.cpp ├── ivroverlay_017.cpp └── ivroverlay_018.cpp ├── ivrrendermodels ├── ivrrendermodels.h ├── ivrrendermodels_002.cpp ├── ivrrendermodels_004.cpp └── ivrrendermodels_005.cpp ├── ivrresources ├── ivrresources.h └── ivrresources_001.cpp ├── ivrscreenshots ├── ivrscreenshots.h └── ivrscreenshots_001.cpp ├── ivrsettings ├── ivrsettings.h ├── ivrsettings_001.cpp └── ivrsettings_002.cpp ├── ivrsystem ├── ivrsystem.h ├── ivrsystem_009.cpp ├── ivrsystem_010.cpp ├── ivrsystem_011.cpp ├── ivrsystem_012.cpp ├── ivrsystem_014.cpp ├── ivrsystem_015.cpp ├── ivrsystem_016.cpp ├── ivrsystem_017.cpp └── ivrsystem_019.cpp ├── ivrtrackedcamera ├── ivrtrackedcamera.h ├── ivrtrackedcamera_002.cpp └── ivrtrackedcamera_003.cpp ├── openvr.h ├── openvr_api.spec ├── repacked_structs.h └── wovr_exports.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Moved to GitLab -> https://gitlab.com/roothorick/WineOpenVR 2 | -------------------------------------------------------------------------------- /bin32/ivrapplications/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin32/ivrchaperone/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin32/ivrchaperonesetup/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin32/ivrcompositor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin32/ivrdrivermanager/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin32/ivrextendeddisplay/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin32/ivrnotifications/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin32/ivroverlay/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin32/ivrrendermodels/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin32/ivrresources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin32/ivrscreenshots/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin32/ivrsettings/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin32/ivrsystem/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin32/ivrtrackedcamera/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin64/ivrapplications/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin64/ivrchaperone/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin64/ivrchaperonesetup/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin64/ivrcompositor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin64/ivrdrivermanager/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin64/ivrextendeddisplay/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin64/ivrnotifications/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin64/ivroverlay/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin64/ivrrendermodels/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin64/ivrresources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin64/ivrscreenshots/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin64/ivrsettings/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin64/ivrsystem/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin64/ivrtrackedcamera/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/common.h -------------------------------------------------------------------------------- /src/d3dproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/d3dproxy.cpp -------------------------------------------------------------------------------- /src/d3dproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/d3dproxy.h -------------------------------------------------------------------------------- /src/ivrapplications/ivrapplications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrapplications/ivrapplications.h -------------------------------------------------------------------------------- /src/ivrapplications/ivrapplications_002.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrapplications/ivrapplications_002.cpp -------------------------------------------------------------------------------- /src/ivrapplications/ivrapplications_003.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrapplications/ivrapplications_003.cpp -------------------------------------------------------------------------------- /src/ivrapplications/ivrapplications_004.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrapplications/ivrapplications_004.cpp -------------------------------------------------------------------------------- /src/ivrapplications/ivrapplications_005.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrapplications/ivrapplications_005.cpp -------------------------------------------------------------------------------- /src/ivrapplications/ivrapplications_006.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrapplications/ivrapplications_006.cpp -------------------------------------------------------------------------------- /src/ivrchaperone/ivrchaperone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrchaperone/ivrchaperone.h -------------------------------------------------------------------------------- /src/ivrchaperone/ivrchaperone_003.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrchaperone/ivrchaperone_003.cpp -------------------------------------------------------------------------------- /src/ivrchaperonesetup/ivrchaperonesetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrchaperonesetup/ivrchaperonesetup.h -------------------------------------------------------------------------------- /src/ivrchaperonesetup/ivrchaperonesetup_004.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrchaperonesetup/ivrchaperonesetup_004.cpp -------------------------------------------------------------------------------- /src/ivrchaperonesetup/ivrchaperonesetup_005.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrchaperonesetup/ivrchaperonesetup_005.cpp -------------------------------------------------------------------------------- /src/ivrcompositor/ivrcompositor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrcompositor/ivrcompositor.h -------------------------------------------------------------------------------- /src/ivrcompositor/ivrcompositor_011.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrcompositor/ivrcompositor_011.cpp -------------------------------------------------------------------------------- /src/ivrcompositor/ivrcompositor_012.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrcompositor/ivrcompositor_012.cpp -------------------------------------------------------------------------------- /src/ivrcompositor/ivrcompositor_013.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrcompositor/ivrcompositor_013.cpp -------------------------------------------------------------------------------- /src/ivrcompositor/ivrcompositor_014.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrcompositor/ivrcompositor_014.cpp -------------------------------------------------------------------------------- /src/ivrcompositor/ivrcompositor_015.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrcompositor/ivrcompositor_015.cpp -------------------------------------------------------------------------------- /src/ivrcompositor/ivrcompositor_016.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrcompositor/ivrcompositor_016.cpp -------------------------------------------------------------------------------- /src/ivrcompositor/ivrcompositor_018.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrcompositor/ivrcompositor_018.cpp -------------------------------------------------------------------------------- /src/ivrcompositor/ivrcompositor_019.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrcompositor/ivrcompositor_019.cpp -------------------------------------------------------------------------------- /src/ivrcompositor/ivrcompositor_020.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrcompositor/ivrcompositor_020.cpp -------------------------------------------------------------------------------- /src/ivrcompositor/ivrcompositor_021.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrcompositor/ivrcompositor_021.cpp -------------------------------------------------------------------------------- /src/ivrcompositor/ivrcompositor_022.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrcompositor/ivrcompositor_022.cpp -------------------------------------------------------------------------------- /src/ivrdrivermanager/ivrdrivermanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrdrivermanager/ivrdrivermanager.h -------------------------------------------------------------------------------- /src/ivrdrivermanager/ivrdrivermanager_001.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrdrivermanager/ivrdrivermanager_001.cpp -------------------------------------------------------------------------------- /src/ivrextendeddisplay/ivrextendeddisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrextendeddisplay/ivrextendeddisplay.h -------------------------------------------------------------------------------- /src/ivrextendeddisplay/ivrextendeddisplay_001.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrextendeddisplay/ivrextendeddisplay_001.cpp -------------------------------------------------------------------------------- /src/ivrnotifications/ivrnotifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrnotifications/ivrnotifications.h -------------------------------------------------------------------------------- /src/ivrnotifications/ivrnotifications_002.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrnotifications/ivrnotifications_002.cpp -------------------------------------------------------------------------------- /src/ivroverlay/ivroverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivroverlay/ivroverlay.h -------------------------------------------------------------------------------- /src/ivroverlay/ivroverlay_008.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivroverlay/ivroverlay_008.cpp -------------------------------------------------------------------------------- /src/ivroverlay/ivroverlay_010.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivroverlay/ivroverlay_010.cpp -------------------------------------------------------------------------------- /src/ivroverlay/ivroverlay_011.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivroverlay/ivroverlay_011.cpp -------------------------------------------------------------------------------- /src/ivroverlay/ivroverlay_012.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivroverlay/ivroverlay_012.cpp -------------------------------------------------------------------------------- /src/ivroverlay/ivroverlay_013.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivroverlay/ivroverlay_013.cpp -------------------------------------------------------------------------------- /src/ivroverlay/ivroverlay_014.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivroverlay/ivroverlay_014.cpp -------------------------------------------------------------------------------- /src/ivroverlay/ivroverlay_016.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivroverlay/ivroverlay_016.cpp -------------------------------------------------------------------------------- /src/ivroverlay/ivroverlay_017.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivroverlay/ivroverlay_017.cpp -------------------------------------------------------------------------------- /src/ivroverlay/ivroverlay_018.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivroverlay/ivroverlay_018.cpp -------------------------------------------------------------------------------- /src/ivrrendermodels/ivrrendermodels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrrendermodels/ivrrendermodels.h -------------------------------------------------------------------------------- /src/ivrrendermodels/ivrrendermodels_002.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrrendermodels/ivrrendermodels_002.cpp -------------------------------------------------------------------------------- /src/ivrrendermodels/ivrrendermodels_004.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrrendermodels/ivrrendermodels_004.cpp -------------------------------------------------------------------------------- /src/ivrrendermodels/ivrrendermodels_005.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrrendermodels/ivrrendermodels_005.cpp -------------------------------------------------------------------------------- /src/ivrresources/ivrresources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrresources/ivrresources.h -------------------------------------------------------------------------------- /src/ivrresources/ivrresources_001.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrresources/ivrresources_001.cpp -------------------------------------------------------------------------------- /src/ivrscreenshots/ivrscreenshots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrscreenshots/ivrscreenshots.h -------------------------------------------------------------------------------- /src/ivrscreenshots/ivrscreenshots_001.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrscreenshots/ivrscreenshots_001.cpp -------------------------------------------------------------------------------- /src/ivrsettings/ivrsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrsettings/ivrsettings.h -------------------------------------------------------------------------------- /src/ivrsettings/ivrsettings_001.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrsettings/ivrsettings_001.cpp -------------------------------------------------------------------------------- /src/ivrsettings/ivrsettings_002.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrsettings/ivrsettings_002.cpp -------------------------------------------------------------------------------- /src/ivrsystem/ivrsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrsystem/ivrsystem.h -------------------------------------------------------------------------------- /src/ivrsystem/ivrsystem_009.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrsystem/ivrsystem_009.cpp -------------------------------------------------------------------------------- /src/ivrsystem/ivrsystem_010.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrsystem/ivrsystem_010.cpp -------------------------------------------------------------------------------- /src/ivrsystem/ivrsystem_011.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrsystem/ivrsystem_011.cpp -------------------------------------------------------------------------------- /src/ivrsystem/ivrsystem_012.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrsystem/ivrsystem_012.cpp -------------------------------------------------------------------------------- /src/ivrsystem/ivrsystem_014.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrsystem/ivrsystem_014.cpp -------------------------------------------------------------------------------- /src/ivrsystem/ivrsystem_015.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrsystem/ivrsystem_015.cpp -------------------------------------------------------------------------------- /src/ivrsystem/ivrsystem_016.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrsystem/ivrsystem_016.cpp -------------------------------------------------------------------------------- /src/ivrsystem/ivrsystem_017.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrsystem/ivrsystem_017.cpp -------------------------------------------------------------------------------- /src/ivrsystem/ivrsystem_019.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrsystem/ivrsystem_019.cpp -------------------------------------------------------------------------------- /src/ivrtrackedcamera/ivrtrackedcamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrtrackedcamera/ivrtrackedcamera.h -------------------------------------------------------------------------------- /src/ivrtrackedcamera/ivrtrackedcamera_002.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrtrackedcamera/ivrtrackedcamera_002.cpp -------------------------------------------------------------------------------- /src/ivrtrackedcamera/ivrtrackedcamera_003.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/ivrtrackedcamera/ivrtrackedcamera_003.cpp -------------------------------------------------------------------------------- /src/openvr.h: -------------------------------------------------------------------------------- 1 | ../openvr/headers/openvr.h -------------------------------------------------------------------------------- /src/openvr_api.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/openvr_api.spec -------------------------------------------------------------------------------- /src/repacked_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/repacked_structs.h -------------------------------------------------------------------------------- /src/wovr_exports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothorick/WineOpenVR/HEAD/src/wovr_exports.cpp --------------------------------------------------------------------------------