HomeSort by relevance Sort by last modified time
    Searched refs:SDL_modelist (Results 26 - 43 of 43) sorted by null

12

  /external/qemu/distrib/sdl-1.2.15/src/video/vgl/
SDL_vglvideo.c 180 mode = SDL_modelist[index][i];
199 SDL_modelist[index] = (SDL_Rect **)
200 SDL_realloc(SDL_modelist[index], (1+next_mode+1)*sizeof(SDL_Rect *));
201 if (SDL_modelist[index] == NULL) {
207 SDL_modelist[index][next_mode] = mode;
208 SDL_modelist[index][next_mode+1] = NULL;
238 SDL_modelist[i] = NULL;
304 return SDL_modelist[((format->BitsPerPixel+7)/8)-1];
476 if (SDL_modelist[i] != NULL) {
477 for (j = 0; SDL_modelist[i][j] != NULL; ++j)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/nanox/
SDL_nxvideo.c 217 SDL_modelist = (SDL_Rect **) SDL_malloc (sizeof (SDL_Rect *) * 2) ;
218 if (SDL_modelist) {
219 SDL_modelist [0] = (SDL_Rect *) SDL_malloc (sizeof(SDL_Rect)) ;
220 if (SDL_modelist [0]) {
221 SDL_modelist [0] -> x = 0 ;
222 SDL_modelist [0] -> y = 0 ;
223 SDL_modelist [0] -> w = si.cols ;
224 SDL_modelist [0] -> h = si.rows ;
226 SDL_modelist [1] = NULL ;
SDL_nxvideo.h 84 #define SDL_modelist (this -> hidden -> modelist)
  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
SDL_fbvideo.h 94 SDL_Rect **SDL_modelist[NUM_MODELISTS];
138 #define SDL_modelist (this->hidden->SDL_modelist)
SDL_fbvideo.c 418 mode = SDL_modelist[index][SDL_nummodes[index]-1];
461 SDL_modelist[index] = (SDL_Rect **)
462 SDL_realloc(SDL_modelist[index], (1+next_mode+1)*sizeof(SDL_Rect *));
463 if ( SDL_modelist[index] == NULL ) {
469 SDL_modelist[index][next_mode] = mode;
470 SDL_modelist[index][next_mode+1] = NULL;
491 SDL_qsort(SDL_modelist[i], SDL_nummodes[i], sizeof *SDL_modelist[i], cmpmodes);
688 SDL_modelist[i] = NULL;
817 return(SDL_modelist[((format->BitsPerPixel+7)/8)-1])
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/gem/
SDL_gemvideo.h 93 SDL_Rect *SDL_modelist[SDL_NUMMODES+1]; /* Mode list */
135 #define SDL_modelist (this->hidden->SDL_modelist)
SDL_gemvideo.c 455 SDL_modelist[0] = SDL_malloc(sizeof(SDL_Rect));
456 SDL_modelist[0]->x = 0;
457 SDL_modelist[0]->y = 0;
458 SDL_modelist[0]->w = VDI_w;
459 SDL_modelist[0]->h = VDI_h;
461 SDL_modelist[1] = NULL;
480 return (SDL_modelist);
1136 if (SDL_modelist[0]) {
1137 SDL_free(SDL_modelist[0]);
1138 SDL_modelist[0]=NULL
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/ps3/
SDL_ps3video.h 140 #define SDL_modelist (this->hidden->SDL_modelist)
  /external/qemu/distrib/sdl-1.2.15/src/video/riscos/
SDL_riscosFullScreenVideo.c 355 SDL_qsort(SDL_modelist[j], SDL_nummodes[j], sizeof *SDL_modelist[j], cmpmodes);
585 mode = SDL_modelist[index][i];
604 SDL_modelist[index] = (SDL_Rect **)
605 SDL_realloc(SDL_modelist[index], (1+next_mode+1)*sizeof(SDL_Rect *));
606 if ( SDL_modelist[index] == NULL ) {
612 SDL_modelist[index][next_mode] = mode;
613 SDL_modelist[index][next_mode+1] = NULL;
SDL_riscosvideo.c 244 return(SDL_modelist[((format->BitsPerPixel+7)/8)-1]);
  /external/qemu/distrib/sdl-1.2.15/src/video/gapi/
SDL_gapivideo.h 128 SDL_Rect **SDL_modelist[NUM_MODELISTS];
SDL_gapivideo.c 218 mode = gapi->SDL_modelist[index][i];
237 gapi->SDL_modelist[index] = (SDL_Rect **)
238 SDL_realloc(gapi->SDL_modelist[index], (1+next_mode+1)*sizeof(SDL_Rect *));
239 if ( gapi->SDL_modelist[index] == NULL ) {
245 gapi->SDL_modelist[index][next_mode] = mode;
246 gapi->SDL_modelist[index][next_mode+1] = NULL;
569 SDL_qsort(gapi->SDL_modelist[i], gapi->SDL_nummodes[i], sizeof *gapi->SDL_modelist[i], cmpmodes);
614 return(gapi->SDL_modelist[((format->BitsPerPixel+7)/8)-1]);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/dga/
SDL_dgavideo.c 183 mode = SDL_modelist[index][SDL_nummodes[index]-1];
202 SDL_modelist[index] = (SDL_Rect **)
203 SDL_realloc(SDL_modelist[index], (1+next_mode+1)*sizeof(SDL_Rect *));
204 if ( SDL_modelist[index] == NULL ) {
210 SDL_modelist[index][next_mode] = mode;
211 SDL_modelist[index][next_mode+1] = NULL;
450 return(SDL_modelist[((format->BitsPerPixel+7)/8)-1]);
1086 if ( SDL_modelist[i] != NULL ) {
1087 for ( j=0; SDL_modelist[i][j]; ++j ) {
1088 SDL_free(SDL_modelist[i][j])
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/windib/
SDL_dibvideo.c 267 mode = SDL_modelist[index][i];
286 SDL_modelist[index] = (SDL_Rect **)
287 SDL_realloc(SDL_modelist[index], (1+next_mode+1)*sizeof(SDL_Rect *));
288 if ( SDL_modelist[index] == NULL ) {
294 SDL_modelist[index][next_mode] = mode;
295 SDL_modelist[index][next_mode+1] = NULL;
395 SDL_qsort(SDL_modelist[i], SDL_nummodes[i], sizeof *SDL_modelist[i], cmpmodes);
445 return(SDL_modelist[((format->BitsPerPixel+7)/8)-1]);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/macdsp/
SDL_dspvideo.c 572 SDL_modelist = DSp_BuildModeList (SDL_Display,
574 if (SDL_modelist == NULL) {
615 while (SDL_modelist[i] != NULL) {
617 if (SDL_modelist[i]->x & format->BitsPerPixel) {
618 dsp_modes[j] = SDL_modelist[i];
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/ggi/
SDL_ggivideo.c 143 static SDL_Rect *SDL_modelist[4] = { NULL, NULL, NULL, NULL };
237 SDL_modelist[((vformat->BitsPerPixel + 7) / 8) - 1] = &video_mode;
245 return(&SDL_modelist[((format->BitsPerPixel + 7) / 8) - 1]);
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11video.h 187 #define SDL_modelist (this->hidden->modelist)
  /external/qemu/distrib/sdl-1.2.15/src/video/windx5/
SDL_dx5video.c 924 SDL_modelist[i] = NULL;
976 SDL_modelist[i] = (SDL_Rect **)
    [all...]

Completed in 1005 milliseconds

12