Home
last modified time | relevance | path

Searched refs:allowed_y (Results 1 – 2 of 2) sorted by relevance

/external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
DSDL_sysmouse.cc47 int allowed_y; in BE_CreateWMCursor() local
52 allowed_y = 16; /* BeOS limitation */ in BE_CreateWMCursor()
53 if ( (w > allowed_x) || (h > allowed_y) ) { in BE_CreateWMCursor()
55 allowed_x, allowed_y); in BE_CreateWMCursor()
65 cursor->bits = (char *)SDL_malloc(4+2*((allowed_x/8)*allowed_y)); in BE_CreateWMCursor()
71 cursor->bits[0] = allowed_y; /* Size of the cursor */ in BE_CreateWMCursor()
86 for ( ; i<allowed_y; ++i ) { in BE_CreateWMCursor()
100 for ( ; i<allowed_y; ++i ) { in BE_CreateWMCursor()
/external/qemu/distrib/sdl-1.2.12/src/video/wincommon/
DSDL_sysmouse.c120 int allowed_y; in WIN_CreateWMCursor()
126 allowed_y = GetSystemMetrics(SM_CYCURSOR); in WIN_CreateWMCursor()
127 if ( (w > allowed_x) || (h > allowed_y) ) { in WIN_CreateWMCursor()
129 allowed_x, allowed_y); in WIN_CreateWMCursor()
146 aptr = cursor->ands = (Uint8 *)SDL_malloc((run+pad)*allowed_y); in WIN_CreateWMCursor()
147 xptr = cursor->xors = (Uint8 *)SDL_malloc((run+pad)*allowed_y); in WIN_CreateWMCursor()
166 for ( ; i<allowed_y; ++i ) { in WIN_CreateWMCursor()
176 hot_x, hot_y, allowed_x, allowed_y, in WIN_CreateWMCursor()