HomeSort by relevance Sort by last modified time
    Searched refs:hot_x (Results 1 - 25 of 41) sorted by null

1 2

  /external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
SDL_sysmouse_c.h 29 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y);
SDL_sysmouse.cc 43 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y)
74 cursor->bits[3] = hot_x;
  /external/qemu/distrib/sdl-1.2.15/src/video/gem/
SDL_gemmouse_c.h 29 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y);
  /external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
SDL_macmouse_c.h 29 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y);
SDL_macmouse.c 53 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y)
82 cursor->curs.hotSpot.h = hot_x;
  /external/qemu/distrib/sdl-1.2.15/src/video/nanox/
SDL_nxmouse_c.h 26 extern WMcursor * NX_CreateWMCursor (_THIS, Uint8 * data, Uint8 * mask, int w, int h, int hot_x, int hot_y) ;
SDL_nxmouse.c 38 Uint8 * data, Uint8 * mask, int w, int h, int hot_x, int hot_y)
  /external/qemu/distrib/sdl-1.2.15/src/video/qtopia/
SDL_sysmouse_c.h 29 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y);
SDL_sysmouse.cc 35 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y)
  /external/qemu/distrib/sdl-1.2.15/src/video/riscos/
SDL_riscosmouse_c.h 30 int hot_x; member in struct:WMcursor
37 WMcursor *RISCOS_CreateWMCursor(_THIS, Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y);
SDL_riscosmouse.c 65 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y)
97 cursor->hot_x = hot_x;
157 cursor_def[4] = cursor->hot_x; /* ActiveX in pixels from left */
  /external/qemu/distrib/sdl-1.2.15/src/video/vgl/
SDL_vglmouse_c.h 29 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y);
SDL_vglmouse.c 42 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y)
  /external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
SDL_gsmouse_c.h 35 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y);
SDL_gsmouse.c 46 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y)
88 cursor->area.x = (x - cursor->hot_x);
  /external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
SDL_sysmouse_c.h 29 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y);
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11mouse_c.h 29 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y);
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_ph_mouse_c.h 32 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y);
SDL_ph_mouse.c 51 WMcursor *ph_CreateWMCursor(_THIS, Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y)
78 cursor->ph_cursor->offset1.x = (short)hot_x;
84 cursor->ph_cursor->offset2.x = (short)hot_x;
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_mouse.h 43 Sint16 hot_x, hot_y; /**< The "tip" of the cursor */ member in struct:SDL_Cursor
86 (Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y);
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_mouse.h 43 Sint16 hot_x, hot_y; /**< The "tip" of the cursor */ member in struct:SDL_Cursor
86 (Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y);
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_mouse.h 43 Sint16 hot_x, hot_y; /**< The "tip" of the cursor */ member in struct:SDL_Cursor
86 (Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y);
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_mouse.h 43 Sint16 hot_x, hot_y; /**< The "tip" of the cursor */ member in struct:SDL_Cursor
86 (Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y);
  /external/qemu/distrib/sdl-1.2.15/test/
testcursor.c 112 int hot_x, hot_y; local
137 sscanf(arrow[4+row], "%d,%d", &hot_x, &hot_y);
138 return SDL_CreateCursor(data, mask, 32, 32, hot_x, hot_y);
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_cursor.c 109 int w, int h, int hot_x, int hot_y)
120 if ( (hot_x < 0) || (hot_y < 0) || (hot_x >= w) || (hot_y >= h) ) {
136 cursor->hot_x = hot_x;
157 w, h, hot_x, hot_y);
214 SDL_cursor->area.x = (x - SDL_cursor->hot_x);
330 SDL_cursor->area.x = (x - SDL_cursor->hot_x);

Completed in 248 milliseconds

1 2