Home
last modified time | relevance | path

Searched refs:SDL_GetEventState (Results 1 – 20 of 20) sorted by relevance

/AliOS-Things-master/components/SDL2/src/video/emscripten/
A DSDL_emscriptenevents.c383 return SDL_GetEventState(sdl_event_type) == SDL_ENABLE; in Emscripten_HandleMouseButton()
405 return SDL_GetEventState(SDL_WINDOWEVENT) == SDL_ENABLE; in Emscripten_HandleMouseFocus()
413 return SDL_GetEventState(SDL_MOUSEWHEEL) == SDL_ENABLE; in Emscripten_HandleWheel()
428 return SDL_GetEventState(SDL_WINDOWEVENT) == SDL_ENABLE; in Emscripten_HandleFocus()
461 if (!preventDefault && SDL_GetEventState(SDL_FINGERDOWN) == SDL_ENABLE) { in Emscripten_HandleTouch()
569 …prevent_default = SDL_GetEventState(eventType == EMSCRIPTEN_EVENT_KEYDOWN ? SDL_KEYDOWN : SDL_KEYU… in Emscripten_HandleKey()
581 …if (eventType == EMSCRIPTEN_EVENT_KEYDOWN && SDL_GetEventState(SDL_TEXTINPUT) == SDL_ENABLE && !is… in Emscripten_HandleKey()
594 return SDL_GetEventState(SDL_TEXTINPUT) == SDL_ENABLE; in Emscripten_HandleKeyPress()
/AliOS-Things-master/components/SDL2/src/events/
A DSDL_clipboardevents.c37 if (SDL_GetEventState(SDL_CLIPBOARDUPDATE) == SDL_ENABLE) { in SDL_SendClipboardUpdate()
A DSDL_displayevents.c48 if (SDL_GetEventState(SDL_DISPLAYEVENT) == SDL_ENABLE) { in SDL_SendDisplayEvent()
A DSDL_dropevents.c39 if (SDL_GetEventState(evtype) == SDL_ENABLE) { in SDL_SendDrop()
A DSDL_touch.c315 if (SDL_GetEventState(SDL_FINGERDOWN) == SDL_ENABLE) { in SDL_SendTouch()
335 if (SDL_GetEventState(SDL_FINGERUP) == SDL_ENABLE) { in SDL_SendTouch()
424 if (SDL_GetEventState(SDL_FINGERMOTION) == SDL_ENABLE) { in SDL_SendTouchMotion()
A DSDL_keyboard.c792 if (SDL_GetEventState(type) == SDL_ENABLE) { in SDL_SendKeyboardKeyInternal()
861 if (SDL_GetEventState(SDL_TEXTINPUT) == SDL_ENABLE) { in SDL_SendKeyboardText()
879 if (SDL_GetEventState(SDL_TEXTEDITING) == SDL_ENABLE) { in SDL_SendEditingText()
A DSDL_windowevents.c180 if (SDL_GetEventState(SDL_WINDOWEVENT) == SDL_ENABLE) { in SDL_SendWindowEvent()
A DSDL_gesture.c507 if (SDL_GetEventState(SDL_MULTIGESTURE) == SDL_ENABLE) { in SDL_SendGestureMulti()
524 if (SDL_GetEventState(SDL_DOLLARGESTURE) == SDL_ENABLE) { in SDL_SendGestureDollar()
540 if (SDL_GetEventState(SDL_DOLLARRECORD) == SDL_ENABLE) { in SDL_SendDollarRecord()
A DSDL_mouse.c439 if (SDL_GetEventState(SDL_MOUSEMOTION) == SDL_ENABLE) {
565 if (SDL_GetEventState(type) == SDL_ENABLE) {
636 if (SDL_GetEventState(SDL_MOUSEWHEEL) == SDL_ENABLE) {
A DSDL_events.c981 if (SDL_GetEventState(eventType) == SDL_ENABLE) { in SDL_SendAppEvent()
995 if (SDL_GetEventState(SDL_SYSWMEVENT) == SDL_ENABLE) { in SDL_SendSysWMEvent()
/AliOS-Things-master/components/SDL2/src/joystick/
A DSDL_joystick.c1065 if (SDL_GetEventState(event.type) == SDL_ENABLE) { in SDL_PrivateJoystickAdded()
1146 if (SDL_GetEventState(event.type) == SDL_ENABLE) { in SDL_PrivateJoystickRemoved()
1212 if (SDL_GetEventState(SDL_JOYAXISMOTION) == SDL_ENABLE) { in SDL_PrivateJoystickAxis()
1252 if (SDL_GetEventState(SDL_JOYHATMOTION) == SDL_ENABLE) { in SDL_PrivateJoystickHat()
1287 if (SDL_GetEventState(SDL_JOYBALLMOTION) == SDL_ENABLE) { in SDL_PrivateJoystickBall()
1342 if (SDL_GetEventState(event.type) == SDL_ENABLE) { in SDL_PrivateJoystickButton()
A DSDL_gamecontroller.c2215 if (SDL_GetEventState(SDL_CONTROLLERAXISMOTION) == SDL_ENABLE) { in SDL_PrivateGameControllerAxis()
2275 if (SDL_GetEventState(event.type) == SDL_ENABLE) { in SDL_PrivateGameControllerButton()
/AliOS-Things-master/components/SDL2/src/video/x11/
A DSDL_x11events.c317 if (SDL_GetEventState(SDL_SYSWMEVENT) == SDL_ENABLE) { in X11_HandleGenericEvent()
709 if (SDL_GetEventState(SDL_SYSWMEVENT) == SDL_ENABLE) { in X11_DispatchEvent()
916 if(SDL_GetEventState(SDL_TEXTINPUT) == SDL_ENABLE){ in X11_DispatchEvent()
993 if(SDL_GetEventState(SDL_TEXTINPUT) == SDL_ENABLE){ in X11_DispatchEvent()
1469 if(SDL_GetEventState(SDL_TEXTINPUT) == SDL_ENABLE){ in X11_PumpEvents()
/AliOS-Things-master/components/SDL2/src/sensor/
A DSDL_sensor.c492 if (SDL_GetEventState(SDL_SENSORUPDATE) == SDL_ENABLE) { in SDL_PrivateSensorUpdate()
/AliOS-Things-master/components/SDL2/docs/
A DREADME-macosx.md58 if (SDL_GetEventState(SDL_QUIT) == SDL_ENABLE) {
69 if (SDL_GetEventState(SDL_DROPFILE) == SDL_ENABLE) {
/AliOS-Things-master/components/SDL2/include/
A DSDL_events.h775 #define SDL_GetEventState(type) SDL_EventState(type, SDL_QUERY) macro
/AliOS-Things-master/components/SDL2/src/video/directfb/
A DSDL_DirectFB_events.c424 if (SDL_GetEventState(SDL_SYSWMEVENT) == SDL_ENABLE) { in DirectFB_PumpEventsWindow()
440 if (SDL_GetEventState(SDL_SYSWMEVENT) == SDL_ENABLE) { in DirectFB_PumpEventsWindow()
/AliOS-Things-master/components/SDL2/src/audio/
A DSDL_audio.c477 if (SDL_GetEventState(SDL_AUDIODEVICEADDED) == SDL_ENABLE) { in SDL_AddAudioDevice()
508 if (SDL_GetEventState(SDL_AUDIODEVICEREMOVED) == SDL_ENABLE) { in SDL_OpenedAudioDeviceDisconnected()
/AliOS-Things-master/components/SDL2/src/video/
A DSDL_video.c1377 if ((SDL_GetEventState(SDL_DROPFILE) == SDL_ENABLE) || in IsAcceptingDragAndDrop()
1378 (SDL_GetEventState(SDL_DROPTEXT) == SDL_ENABLE)) { in IsAcceptingDragAndDrop()
3846 return (SDL_GetEventState(SDL_TEXTINPUT) == SDL_ENABLE); in SDL_IsTextInputActive()
/AliOS-Things-master/components/SDL2/src/video/windows/
A DSDL_windowsevents.c409 if (SDL_GetEventState(SDL_SYSWMEVENT) == SDL_ENABLE) { in WIN_WindowProc()

Completed in 45 milliseconds