HomeSort by relevance Sort by last modified time
    Searched refs:enumrect (Results 1 - 2 of 2) sorted by null

  /external/qemu/distrib/sdl-1.2.12/src/video/directfb/
SDL_DirectFB_video.c 190 struct DirectFBEnumRect *enumrect; local
197 enumrect = SDL_calloc(1, sizeof(struct DirectFBEnumRect));
198 if (!enumrect)
204 enumrect->r.w = (Uint16)width;
205 enumrect->r.h = (Uint16)height;
206 enumrect->next = enumlist;
208 enumlist = enumrect;
  /external/qemu/distrib/sdl-1.2.12/src/video/windx5/
SDL_dx5video.c 654 struct DX5EnumRect *enumrect; local
690 enumrect = (struct DX5EnumRect*)SDL_malloc(sizeof(struct DX5EnumRect));
691 if ( !enumrect ) {
695 enumrect->refreshRate = refreshRate;
696 enumrect->r.x = 0;
697 enumrect->r.y = 0;
698 enumrect->r.w = (Uint16)desc->dwWidth;
699 enumrect->r.h = (Uint16)desc->dwHeight;
700 enumrect->next = enumlists[bpp];
701 enumlists[bpp] = enumrect;
    [all...]

Completed in 482 milliseconds