| 488 | } |
| 489 | |
| 490 | void InputEventManager::buildInputEvent(U32 deviceType, U32 deviceInst, InputEventType objType, InputObjectInstances objInst, InputActionType action, S32 iValue) |
| 491 | { |
| 492 | InputEventInfo newEvent; |
| 493 | |
| 494 | newEvent.deviceType = deviceType; |
| 495 | newEvent.deviceInst = deviceInst; |
| 496 | newEvent.objType = objType; |
| 497 | newEvent.objInst = objInst; |
| 498 | newEvent.action = action; |
| 499 | newEvent.iValue = iValue; |
| 500 | |
| 501 | newEvent.postToSignal(Input::smInputEvent); |
| 502 | } |
| 503 | |
| 504 | void InputEventManager::buildInputEvent(U32 deviceType, U32 deviceInst, InputEventType objType, InputObjectInstances objInst, InputActionType action, F32 fValue) |
| 505 | { |
no test coverage detected