HomeSort by relevance Sort by last modified time
    Searched refs:SDL_EventState (Results 1 - 8 of 8) sorted by null

  /external/qemu/distrib/sdl-1.2.12/src/main/macos/exports/
SDL.x 51 SDL_EventState
  /external/qemu/distrib/sdl-1.2.12/include/
SDL_events.h 321 If 'state' is set to SDL_QUERY, SDL_EventState() will return the
328 extern DECLSPEC Uint8 SDLCALL SDL_EventState(Uint8 type, int state);
  /prebuilt/darwin-x86/sdl/include/SDL/
SDL_events.h 321 If 'state' is set to SDL_QUERY, SDL_EventState() will return the
328 extern DECLSPEC Uint8 SDLCALL SDL_EventState(Uint8 type, int state);
  /prebuilt/linux-x86/sdl/include/SDL/
SDL_events.h 321 If 'state' is set to SDL_QUERY, SDL_EventState() will return the
328 extern DECLSPEC Uint8 SDLCALL SDL_EventState(Uint8 type, int state);
  /prebuilt/windows/sdl/host/include/SDL/
SDL_events.h 318 If 'state' is set to SDL_QUERY, SDL_EventState() will return the
325 extern DECLSPEC Uint8 SDLCALL SDL_EventState(Uint8 type, int state);
  /prebuilt/windows/sdl/include/SDL/
SDL_events.h 321 If 'state' is set to SDL_QUERY, SDL_EventState() will return the
328 extern DECLSPEC Uint8 SDLCALL SDL_EventState(Uint8 type, int state);
  /external/qemu/distrib/sdl-1.2.12/src/joystick/
SDL_joystick.c 559 state = SDL_EventState(event_list[i],SDL_QUERY);
567 SDL_EventState(event_list[i], state);
  /external/qemu/distrib/sdl-1.2.12/src/events/
SDL_events.c 38 static Uint32 SDL_eventstate = 0;
115 if ( SDL_numjoysticks && (SDL_eventstate & SDL_JOYEVENTMASK) ) {
237 SDL_eventstate = ~0;
238 /* It's not save to call SDL_EventState() yet */
239 SDL_eventstate &= ~(0x00000001 << SDL_SYSWMEVENT);
382 if ( SDL_numjoysticks && (SDL_eventstate & SDL_JOYEVENTMASK) ) {
435 Uint8 SDL_EventState (Uint8 type, int state)
449 SDL_eventstate |= (0x00000001 << (type));
451 SDL_eventstate &= ~(0x00000001 << (type));
467 SDL_eventstate |= (0x00000001 << (type))
    [all...]

Completed in 290 milliseconds