Searched refs:pixels8 (Results 1 – 1 of 1) sorted by relevance
/external/qemu/distrib/sdl-1.2.12/src/video/ |
D | SDL_cursor.c | 341 static Uint8 pixels8[2]; variable 387 pixels8[0] = (Uint8)SDL_MapRGB(screen->format, 255, 255, 255); in SDL_DrawCursorFast() 388 pixels8[1] = (Uint8)SDL_MapRGB(screen->format, 0, 0, 0); in SDL_DrawCursorFast() 402 *dst = pixels8[datab>>7]; in SDL_DrawCursorFast() 519 pixels8[0] = (Uint8)SDL_MapRGB(screen->format, 255, 255, 255); in SDL_DrawCursorSlow() 520 pixels8[1] = (Uint8)SDL_MapRGB(screen->format, 0, 0, 0); in SDL_DrawCursorSlow() 531 SDL_memset(dst, pixels8[datab>>7], dstbpp); in SDL_DrawCursorSlow()
|