/external/qemu/distrib/sdl-1.2.15/docs/man3/ |
SDL_CreateCursor.3 | 8 \fBSDL_Cursor *\fBSDL_CreateCursor\fP\fR(\fBUint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y\fR); 87 int hot_x, hot_y; 112 sscanf(image[4+row], "%d,%d", &hot_x, &hot_y); 113 return SDL_CreateCursor(data, mask, 32, 32, hot_x, hot_y);
|
/external/qemu/distrib/sdl-1.2.15/src/video/riscos/ |
SDL_riscosmouse_c.h | 31 int hot_y; 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) 98 cursor->hot_y = hot_y; 158 cursor_def[5] = cursor->hot_y; /* ActiveY in pixels from top */
|
/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/ |
SDL_macmouse.c | 53 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y) 83 cursor->curs.hotSpot.v = hot_y;
|
SDL_macmouse_c.h | 29 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y);
|
/external/qemu/distrib/sdl-1.2.15/docs/html/ |
sdlcreatecursor.html | 109 >(Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y);</CODE 275 int hot_x, hot_y; 300 sscanf(image[4+row], "%d,%d", &hot_x, &hot_y); 301 return SDL_CreateCursor(data, mask, 32, 32, hot_x, hot_y);
|
/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) 73 cursor->bits[2] = hot_y;
|
/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/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/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) 79 cursor->ph_cursor->offset1.y = (short)hot_y; 85 cursor->ph_cursor->offset2.y = (short)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) 89 cursor->area.y = (y - cursor->hot_y);
|
/external/qemu/distrib/sdl-1.2.15/src/video/qtopia/ |
SDL_sysmouse.cc | 35 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y)
|
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/vgl/ |
SDL_vglmouse.c | 42 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y)
|
SDL_vglmouse_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/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/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/quartz/ |
SDL_QuartzWM.m | 37 int w, int h, int hot_x, int hot_y) { 70 hot_y = hot_y*16/h; 72 else { /* too small (or just right): extend it (from the bottom left corner, so hot_y must be adjusted) */ 73 hot_y += 16 - h; 77 cursor->nscursor = [ [ NSCursor alloc ] initWithImage: img hotSpot: NSMakePoint(hot_x, hot_y) ];
|
/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);
|
/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) ) { 137 cursor->hot_y = hot_y; 157 w, h, hot_x, hot_y); 215 SDL_cursor->area.y = (y - SDL_cursor->hot_y); 331 SDL_cursor->area.y = (y - SDL_cursor->hot_y);
|