Searched defs:mode_list (Results 1 - 4 of 4) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/src/video/xbios/
H A DSDL_xbios_milan.c42 static const predefined_mode_t mode_list[NUM_PREDEFINED_MODES]={ variable
92 modeinfo.width = mode_list[i].width;
93 modeinfo.height = mode_list[i].height;
/external/qemu/distrib/sdl-1.2.15/src/video/photon/
H A DSDL_ph_modes.c27 static PgVideoModes_t mode_list; variable
69 if (PgGetVideoModeList(&mode_list) < 0)
77 for (i=0; i < mode_list.num_modes; i++)
79 if (PgGetVideoModeInfo(mode_list.modes[i], &mode_info) < 0)
81 SDL_SetError("ph_ListModes(): PgGetVideoModeInfo() function failed on mode: 0x%X.\n", mode_list.modes[i]);
121 if (PgGetVideoModeList(&mode_list) < 0)
133 for (i=0; i<mode_list.num_modes; i++)
135 if (PgGetVideoModeInfo(mode_list.modes[i], &mode_info) < 0)
143 return mode_list.modes[i];
151 closestmode=mode_list
[all...]
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestvidinfo.c339 } mode_list[] = { local
356 for ( i = 0; i < SDL_TABLESIZE(mode_list); ++i ) {
360 mode_list[i].w,
361 mode_list[i].h,
362 mode_list[i].bpp);
365 screen = SDL_SetVideoMode(mode_list[i].w,
366 mode_list[i].h,
367 mode_list[i].bpp,
/external/qemu/distrib/sdl-1.2.15/src/video/macdsp/
H A DSDL_dspvideo.c342 SDL_Rect **mode_list; local
397 mode_list = (SDL_Rect**) SDL_malloc (sizeof (SDL_Rect*) * (i+1));
398 if (mode_list) {
402 mode_list [j] = (SDL_Rect*) SDL_malloc (sizeof (SDL_Rect));
403 if (mode_list [j])
404 SDL_memcpy (mode_list [j], &(temp_list [j]), sizeof (SDL_Rect));
410 mode_list [i] = NULL; /* append null to the end */
417 return mode_list;

Completed in 301 milliseconds