Home | History | Annotate | Download | only in modes

Lines Matching refs:desired

2811  * Using the desired mode information in each crtc, set
2900 xf86OutputFindClosestMode(xf86OutputPtr output, DisplayModePtr desired)
2906 if (xf86ModesEqual(scan, desired)) {
2907 best = desired;
2911 /* Reject if it's larger than the desired mode. */
2912 if (scan->HDisplay > desired->HDisplay ||
2913 scan->VDisplay > desired->VDisplay) {
2942 (fabs(scan->VRefresh - desired->VRefresh) <
2943 fabs(best->VRefresh - desired->VRefresh))) {
2954 * InitialConfiguration code above. The goal is to clone the desired
2959 xf86SetSingleMode(ScrnInfoPtr pScrn, DisplayModePtr desired, Rotation rotation)
2972 compat_mode = xf86OutputFindClosestMode(compat_output, desired);
2974 desired = compat_mode;
2998 crtc_mode = xf86OutputFindClosestMode(output, desired);
3383 * 'box', then prefer 'desired'. If 'desired' is NULL, then prefer the crtc
3389 BoxPtr box, xf86CrtcPtr desired, BoxPtr crtc_box_ret)
3408 if (coverage && crtc == desired) {