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

  /frameworks/base/services/java/com/android/server/wm/
WindowState.java 158 * Insets that determine the area covered by the display overscan region. These are in the
491 final Rect overscan = mOverscanFrame; local
492 overscan.set(of);
537 overscanInsets.left = overscan.left > frame.left ? overscan.left-frame.left : 0;
538 overscanInsets.top = overscan.top > frame.top ? overscan.top-frame.top : 0;
539 overscanInsets.right = overscan.right < frame.right ? frame.right-overscan.right : 0;
540 overscanInsets.bottom = overscan.bottom < frame.bottom ? frame.bottom-overscan.bottom : 0
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/directfb/
SDL_DirectFB_video.c 544 /* Check if overscan is possibly set */
547 float overscan = 0; local
548 if (SDL_sscanf(SDL_getenv("SDL_DIRECTFB_MGA_OVERSCAN"), "%f", &overscan) == 1)
549 if (overscan > 0 && overscan < 2)
550 HIDDEN->mga_crtc2_stretch_overscan = overscan;
554 printf("CRTC2 overscan: %f\n", HIDDEN->mga_crtc2_stretch_overscan);
  /frameworks/base/core/java/android/view/
View.java 5735 final Rect overscan = mAttachInfo.mOverscanInsets; local
    [all...]

Completed in 113 milliseconds