| 500 | |
| 501 | // Pre-1.11 input state |
| 502 | typedef struct ovrInputState2_ |
| 503 | { |
| 504 | double TimeInSeconds; |
| 505 | unsigned int Buttons; |
| 506 | unsigned int Touches; |
| 507 | float IndexTrigger[ovrHand_Count]; |
| 508 | float HandTrigger[ovrHand_Count]; |
| 509 | ovrVector2f Thumbstick[ovrHand_Count]; |
| 510 | ovrControllerType ControllerType; |
| 511 | float IndexTriggerNoDeadzone[ovrHand_Count]; |
| 512 | float HandTriggerNoDeadzone[ovrHand_Count]; |
| 513 | ovrVector2f ThumbstickNoDeadzone[ovrHand_Count]; |
| 514 | } ovrInputState2; |
| 515 | |
| 516 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_GetInputState(ovrSession session, ovrControllerType controllerType, ovrInputState* inputState) |
| 517 | { |
nothing calls this directly
no outgoing calls
no test coverage detected