Searched refs:AA_context (Results 1 – 3 of 3) sorted by relevance
/external/qemu/distrib/sdl-1.2.12/src/video/aalib/ |
D | SDL_aavideo.c | 155 AA_context = aa_autoinit(&aa_defparams); in AA_VideoInit() 156 if ( ! AA_context ) { in AA_VideoInit() 163 if ( ! aa_autoinitkbd (AA_context, AA_SENDRELEASE) ) { in AA_VideoInit() 167 if ( ! aa_autoinitmouse (AA_context, AA_SENDRELEASE) ) { in AA_VideoInit() 174 aa_resizehandler(AA_context, AA_ResizeHandler); in AA_VideoInit() 176 …fprintf(stderr,"Using AAlib driver: %s (%s)\n", AA_context->driver->name, AA_context->driver->shor… in AA_VideoInit() 178 AA_in_x11 = (SDL_strcmp(AA_context->driver->shortname,"X11") == 0); in AA_VideoInit() 262 SDL_memset(aa_image(AA_context), 0, aa_imgwidth(AA_context) * aa_imgheight(AA_context)); in AA_SetVideoMode() 277 AA_x_ratio = ((double)aa_imgwidth(AA_context)) / ((double)width); in AA_SetVideoMode() 278 AA_y_ratio = ((double)aa_imgheight(AA_context)) / ((double)height); in AA_SetVideoMode() [all …]
|
D | SDL_aaevents.c | 60 aa_getmouse (AA_context, &mouse_x, &mouse_y, &mouse_button); in AA_PumpEvents() 62 mouse_x = mouse_x * this->screen->w / aa_scrwidth (AA_context); in AA_PumpEvents() 63 mouse_y = mouse_y * this->screen->h / aa_scrheight (AA_context); in AA_PumpEvents() 104 evt = aa_getevent(AA_context, 0); in AA_PumpEvents()
|
D | SDL_aavideo.h | 53 #define AA_context (this->hidden->context) macro
|