|
| int | In_FindMouseButtonMapping (InputContext *context, const char *name) |
| |
| int | In_FindKeyboardButtonMapping (InputContext *context, const char *name) |
| |
| int | In_FindGamepadButtonMapping (InputContext *context, const char *name) |
| |
| int | In_FindMouseScrollButtonMapping (InputContext *context, const char *name) |
| |
| int | In_FindMouseAxisMapping (InputContext *context, const char *name) |
| |
| int | In_FindControllerAxisMapping (InputContext *context, const char *name) |
| |
| int | In_FindMouseScrollAxisMapping (InputContext *context, const char *name) |
| |
| struct AxisBinding | In_FindAxisMapping (InputContext *context, const char *name) |
| |
| struct ButtonBinding | In_FindButtonMapping (InputContext *context, const char *name) |
| |
| float | In_GetAxisValue (InputContext *context, struct AxisBinding binding) |
| |
| bool | In_GetButtonValue (InputContext *context, struct ButtonBinding binding) |
| |
| float | In_GetMouseAxisValue (InputContext *context, HMouseAxisBinding hBinding) |
| |
| bool | In_GetMouseButtonValue (InputContext *context, HMouseButtonBinding hBinding) |
| |
| void | In_RecieveKeyboardKey (InputContext *context, int key, int scancode, int action, int mods) |
| |
| void | In_RecieveMouseMove (InputContext *context, double xposIn, double yposIn) |
| |
| void | In_RecieveMouseButton (InputContext *context, int button, int action, int mods) |
| |
| void | In_FramebufferResize (InputContext *context, int width, int height) |
| |
| void | In_RecieveScroll (InputContext *context, double xoffset, double yoffset) |
| |
| void | In_SetControllerPresent (int controllerNo) |
| |
| void | In_EndFrame (InputContext *context) |
| |
| InputContext | In_InitInputContext () |
| |
| void | In_GetMask (struct ActiveInputBindingsMask *pOutMask, InputContext *pCtx) |
| |
| void | In_SetMask (struct ActiveInputBindingsMask *mask, InputContext *pCtx) |
| |
| void | In_ActivateButtonBinding (struct ButtonBinding binding, struct ActiveInputBindingsMask *pMask) |
| |
| void | In_ActivateAxisBinding (struct AxisBinding binding, struct ActiveInputBindingsMask *pMask) |
| |
| void | In_DeactivateButtonBinding (struct ButtonBinding binding, struct ActiveInputBindingsMask *pMask) |
| |
| void | In_DeactivateAxisBinding (struct AxisBinding binding, struct ActiveInputBindingsMask *pMask) |
| |
| bool | In_GetButtonPressThisFrame (InputContext *context, struct ButtonBinding binding) |
| |
| bool | In_GetButtonReleaseThisFrame (InputContext *context, struct ButtonBinding binding) |
| |