HomeSort by relevance Sort by last modified time
    Searched full:modeinfo (Results 1 - 22 of 22) sorted by null

  /external/qemu/distrib/sdl-1.2.15/src/video/xbios/
SDL_xbios_milan.c 65 xbiosmode_t modeinfo; local
67 modeinfo.number = inf->devID;
68 modeinfo.width = inf->scrWidth;
69 modeinfo.height = inf->scrHeight;
70 modeinfo.depth = inf->scrPlanes;
71 modeinfo.flags = 0;
73 SDL_XBIOS_AddMode(enum_this, enum_actually_add, &modeinfo);
89 xbiosmode_t modeinfo; local
91 modeinfo.number = deviceid + j;
92 modeinfo.width = mode_list[i].width
    [all...]
SDL_xbios_sb3.c 69 xbiosmode_t modeinfo; local
76 modeinfo.number = -1;
77 modeinfo.width = scrinfo->virtual_width;
78 modeinfo.height = scrinfo->virtual_height;
79 modeinfo.depth = 1<<(SDL_XBIOS_scpn_planes_device[scrinfo->device]);
80 modeinfo.flags = (modeinfo.depth == 8 ? XBIOSMODE_C2P : 0);
82 SDL_XBIOS_AddMode(this, actually_add, &modeinfo);
SDL_xbios_blowup.c 39 xbiosmode_t modeinfo; local
67 modeinfo.number = (num_mode == 3 ? BPS8 : BPS16);
68 modeinfo.width = blow_mode->width + 1;
69 modeinfo.height = blow_mode->height + 1;
70 modeinfo.depth = (num_mode == 3 ? 8 : 16);
71 modeinfo.flags = (modeinfo.depth == 8 ? XBIOSMODE_C2P : 0);
73 SDL_XBIOS_AddMode(this, actually_add, &modeinfo);
SDL_xbios_centscreen.c 54 xbiosmode_t modeinfo; local
56 modeinfo.number = listedmode.mode;
57 modeinfo.width = listedmode.physx;
58 modeinfo.height = listedmode.physy;
59 modeinfo.depth = listedmode.plan;
60 modeinfo.flags = (modeinfo.depth == 8 ? XBIOSMODE_C2P : 0);
62 SDL_XBIOS_AddMode(this, actually_add, &modeinfo);
SDL_xbios.c 261 void SDL_XBIOS_AddMode(_THIS, int actually_add, const xbiosmode_t *modeinfo)
265 switch(modeinfo->depth) {
286 while ( (SDL_modelist[i][j]->w > modeinfo->width) ||
287 (SDL_modelist[i][j]->h > modeinfo->height) ) {
291 if ( (SDL_modelist[i][j]->w == modeinfo->width) &&
292 (SDL_modelist[i][j]->h == modeinfo->height) ) {
298 SDL_modelist[i][j]->w = modeinfo->width;
299 SDL_modelist[i][j]->h = modeinfo->height;
300 SDL_memcpy(SDL_xbiosmode[i][j], modeinfo, sizeof(xbiosmode_t));
337 xbiosmode_t modeinfo; local
352 xbiosmode_t modeinfo; local
    [all...]
SDL_xbios.h 109 void SDL_XBIOS_AddMode(_THIS, int actually_add, const xbiosmode_t *modeinfo);
  /external/qemu/distrib/sdl-1.2.15/src/video/vgl/
SDL_vglvideo.c 93 if ((modes[i]->ModeInfo.Xsize > 320) &&
94 (modes[i]->ModeInfo.Ysize > 200) &&
95 ((modes[i]->ModeInfo.Type == VIDBUF8) ||
96 (modes[i]->ModeInfo.Type == VIDBUF16) ||
97 (modes[i]->ModeInfo.Type == VIDBUF32))) {
181 if ((mode->w == inmode->ModeInfo.Xsize) &&
182 (mode->h == inmode->ModeInfo.Ysize))
194 mode->w = inmode->ModeInfo.Xsize;
195 mode->h = inmode->ModeInfo.Ysize;
222 if (VGLCurMode->ModeInfo.PixelBytes > 0)
    [all...]
SDL_vglvideo.h 44 VGLBitmap ModeInfo;
  /external/qemu/distrib/sdl-1.2.15/src/video/svga/
SDL_svgavideo.c 164 vga_modeinfo *modeinfo; local
166 modeinfo = vga_getmodeinfo(mode);
168 i = modeinfo->bytesperpixel-1;
180 while ( (SDL_modelist[i][j]->w > modeinfo->width) ||
181 (SDL_modelist[i][j]->h > modeinfo->height) ) {
185 if ( (SDL_modelist[i][j]->w == modeinfo->width) &&
186 (SDL_modelist[i][j]->h == modeinfo->height) ) {
192 SDL_modelist[i][j]->w = modeinfo->width;
193 SDL_modelist[i][j]->h = modeinfo->height;
215 vga_modeinfo *modeinfo; local
344 vga_modeinfo *modeinfo; local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
loopfilter.h 76 struct modeinfo;
99 struct modeinfo *mode_info_context,
105 struct modeinfo *mode_info_context,
blockd.h 168 typedef struct modeinfo struct
  /external/libvpx/libvpx/vp8/common/
loopfilter.h 76 struct modeinfo;
99 struct modeinfo *mode_info_context,
105 struct modeinfo *mode_info_context,
blockd.h 168 typedef struct modeinfo struct
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
loopfilter.h 76 struct modeinfo;
99 struct modeinfo *mode_info_context,
105 struct modeinfo *mode_info_context,
blockd.h 168 typedef struct modeinfo struct
  /external/qemu-pc-bios/vgabios/tests/lfbprof/
lfbprof.c 386 int VBE_getModeInfo(int mode,VBE_modeInfo *modeInfo)
391 * modeInfo - Place to store VBE mode information
405 VBE_callESDI(&regs, modeInfo, sizeof(VBE_modeInfo));
408 if ((modeInfo->ModeAttributes & vbeMdAvailable) == 0)
459 VBE_modeInfo modeInfo;
464 if (VBE_getModeInfo(*p, &modeInfo)) {
466 if ((modeInfo.ModeAttributes & vbeMdLinear) == 0)
468 if (modeInfo.MemoryModel != vbeMemPK
469 || modeInfo.BitsPerPixel != 8
470 || modeInfo.NumberOfPlanes != 1
    [all...]
  /external/qemu-pc-bios/vgabios/
vbetables-gen.c 12 } ModeInfo;
14 ModeInfo modes[] = {
93 const ModeInfo *pm;
vbe.c 649 // ModeInfo helper function
    [all...]
ChangeLog 1140 dependant on ModeInfo content instead of hardcoded functions)
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_common_data.c 24 // Log 2 conversion lookup tables for modeinfo width and height
  /external/libvpx/libvpx/vp9/common/
vp9_common_data.c 24 // Log 2 conversion lookup tables for modeinfo width and height
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_common_data.c 24 // Log 2 conversion lookup tables for modeinfo width and height

Completed in 3497 milliseconds