Skip to content

Commit

Permalink
Support new IVRDriverInput_002 interface
Browse files Browse the repository at this point in the history
The interface doesn't differ from IVRDriverInput_001 except in terms of skeletal tracking which isn't supported by the emulator anyway
  • Loading branch information
joemarshall authored Oct 1, 2018
1 parent de7e1ec commit 8108b4d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions driver_vrinputemulator/src/hooks/common.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ std::shared_ptr<InterfaceHooks> InterfaceHooks::hookInterface(void* interfaceRef
retval = IVRServerDriverHost005Hooks::createHooks(interfaceRef);
} else if (interfaceVersion.compare("IVRDriverInput_001") == 0) {
retval = IVRDriverInput001Hooks::createHooks(interfaceRef);
} else if (interfaceVersion.compare("IVRDriverInput_002") == 0) {
retval = IVRDriverInput001Hooks::createHooks(interfaceRef);
} else if (interfaceVersion.compare("ITrackedDeviceServerDriver_005") == 0) {
retval = ITrackedDeviceServerDriver005Hooks::createHooks(interfaceRef);
} else if (interfaceVersion.compare("IVRControllerComponent_001") == 0) {
Expand Down

0 comments on commit 8108b4d

Please sign in to comment.