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

  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_ph_modes.c 26 static PgVideoModeInfo_t mode_info; variable
75 mode_info.bits_per_pixel = 0;
79 if (PgGetVideoModeInfo(mode_list.modes[i], &mode_info) < 0)
84 if(mode_info.bits_per_pixel == format->BitsPerPixel)
86 Amodelist[j].w = mode_info.width;
87 Amodelist[j].h = mode_info.height;
135 if (PgGetVideoModeInfo(mode_list.modes[i], &mode_info) < 0)
140 if ((mode_info.width == width) && (mode_info.height == height) &&
141 (mode_info.bits_per_pixel == bpp)
    [all...]
  /external/chromium_org/chromeos/display/
output_util.cc 114 float GetRefreshRate(const XRRModeInfo* mode_info) {
115 if (mode_info->hTotal && mode_info->vTotal) {
116 return static_cast<float>(mode_info->dotClock) /
117 (static_cast<float>(mode_info->hTotal) *
118 static_cast<float>(mode_info->vTotal));
389 XRRModeInfo mode_info = {0}; local
390 mode_info.id = id;
391 mode_info.width = width;
392 mode_info.height = height
    [all...]

Completed in 59 milliseconds