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

  /external/qemu/distrib/sdl-1.2.12/include/
SDL_mouse.h 52 * be tested using the SDL_BUTTON(X) macros, and x and y are set to the
60 * be tested using the SDL_BUTTON(X) macros, and x and y are set to the
119 #define SDL_BUTTON(X) (1 << ((X)-1))
125 #define SDL_BUTTON_LMASK SDL_BUTTON(SDL_BUTTON_LEFT)
126 #define SDL_BUTTON_MMASK SDL_BUTTON(SDL_BUTTON_MIDDLE)
127 #define SDL_BUTTON_RMASK SDL_BUTTON(SDL_BUTTON_RIGHT)
  /prebuilt/darwin-x86/sdl/include/SDL/
SDL_mouse.h 52 * be tested using the SDL_BUTTON(X) macros, and x and y are set to the
60 * be tested using the SDL_BUTTON(X) macros, and x and y are set to the
119 #define SDL_BUTTON(X) (1 << ((X)-1))
125 #define SDL_BUTTON_LMASK SDL_BUTTON(SDL_BUTTON_LEFT)
126 #define SDL_BUTTON_MMASK SDL_BUTTON(SDL_BUTTON_MIDDLE)
127 #define SDL_BUTTON_RMASK SDL_BUTTON(SDL_BUTTON_RIGHT)
  /prebuilt/linux-x86/sdl/include/SDL/
SDL_mouse.h 52 * be tested using the SDL_BUTTON(X) macros, and x and y are set to the
60 * be tested using the SDL_BUTTON(X) macros, and x and y are set to the
119 #define SDL_BUTTON(X) (1 << ((X)-1))
125 #define SDL_BUTTON_LMASK SDL_BUTTON(SDL_BUTTON_LEFT)
126 #define SDL_BUTTON_MMASK SDL_BUTTON(SDL_BUTTON_MIDDLE)
127 #define SDL_BUTTON_RMASK SDL_BUTTON(SDL_BUTTON_RIGHT)
  /prebuilt/windows/sdl/host/include/SDL/
SDL_mouse.h 56 * be tested using the SDL_BUTTON(X) macros, and x and y are set to the
64 * be tested using the SDL_BUTTON(X) macros, and x and y are set to the
123 #define SDL_BUTTON(X) (SDL_PRESSED<<(X-1))
129 #define SDL_BUTTON_LMASK SDL_BUTTON(SDL_BUTTON_LEFT)
130 #define SDL_BUTTON_MMASK SDL_BUTTON(SDL_BUTTON_MIDDLE)
131 #define SDL_BUTTON_RMASK SDL_BUTTON(SDL_BUTTON_RIGHT)
  /prebuilt/windows/sdl/include/SDL/
SDL_mouse.h 52 * be tested using the SDL_BUTTON(X) macros, and x and y are set to the
60 * be tested using the SDL_BUTTON(X) macros, and x and y are set to the
119 #define SDL_BUTTON(X) (1 << ((X)-1))
125 #define SDL_BUTTON_LMASK SDL_BUTTON(SDL_BUTTON_LEFT)
126 #define SDL_BUTTON_MMASK SDL_BUTTON(SDL_BUTTON_MIDDLE)
127 #define SDL_BUTTON_RMASK SDL_BUTTON(SDL_BUTTON_RIGHT)
  /external/qemu/distrib/sdl-1.2.12/src/events/
SDL_mouse.c 62 if ( SDL_ButtonState & SDL_BUTTON(i) ) {
230 buttonstate |= SDL_BUTTON(button);
234 buttonstate &= ~SDL_BUTTON(button);
  /external/qemu/distrib/sdl-1.2.12/src/video/svga/
SDL_svgaevents.c 159 if ( !(SDL_GetMouseState(NULL, NULL) & SDL_BUTTON(1)) ) {
163 if ( (SDL_GetMouseState(NULL, NULL) & SDL_BUTTON(1)) ) {
168 if ( !(SDL_GetMouseState(NULL, NULL) & SDL_BUTTON(2)) ) {
172 if ( (SDL_GetMouseState(NULL, NULL) & SDL_BUTTON(2)) ) {
177 if ( !(SDL_GetMouseState(NULL, NULL) & SDL_BUTTON(3)) ) {
181 if ( (SDL_GetMouseState(NULL, NULL) & SDL_BUTTON(3)) ) {

Completed in 5902 milliseconds