cancel
Showing results for 
Search instead for 
Did you mean: 

Documentation update for VrApi

rupert
Protege
The documentation is out-of-date with respect to the API. This code sample...
ovrInputCapabilityHeader capsHeader;
if ( vrapi_EnumerateInputDevices( ovrContext, 0, &capsHeader ) >= 0 )
{
if ( capsHeader.Type == ovrControllerType_TrackedRemote )
{
ovrInputTrackedRemoteCapabilities remoteCaps;
if ( vrapi_GetInputDeviceCapabilities( ovr, &remoteCaps.Header ) >= 0 )
{
// remote is connected
}
}
}
...is missing the setting of the header specified in VrApi_Input.h before calling vrapi_GetInputDeviceCapabilities:
remoteCaps.Header = capsHeader;


1 REPLY 1

rupert
Protege
While we're at it: I think ovrContext and ovr are both the same ovrMobile* and the variable names should be the same to avoid confusion.