9c546f8797
- xorg-x11-server-1.1.1-vbe-filter-less.patch: Be gentler about rejecting VESA modes early, since xf86ValidateModes should handle them just fine.
38 lines
1.2 KiB
Diff
38 lines
1.2 KiB
Diff
--- xorg-server-1.1.1/hw/xfree86/vbe/vbeModes.c.jx 2006-07-05 14:31:42.000000000 -0400
|
|
+++ xorg-server-1.1.1/hw/xfree86/vbe/vbeModes.c 2006-09-22 15:29:34.000000000 -0400
|
|
@@ -153,34 +153,6 @@
|
|
xf86ErrorFVerb(DEBUG_VERB, "*");
|
|
}
|
|
|
|
- /*
|
|
- * Check if there's a valid monitor mode that this one can be matched
|
|
- * up with. The actual matching is done later.
|
|
- */
|
|
- if (modeOK) {
|
|
- Bool sizeMatch = FALSE;
|
|
- modeOK = FALSE;
|
|
- for (p = pScrn->monitor->Modes; p != NULL; p = p->next) {
|
|
- if ((p->HDisplay != mode->XResolution) ||
|
|
- (p->VDisplay != mode->YResolution) ||
|
|
- (p->Flags & (V_INTERLACE | V_DBLSCAN | V_CLKDIV2)))
|
|
- continue;
|
|
- sizeMatch = TRUE;
|
|
- /* XXX could support the various V_ flags */
|
|
- status = xf86CheckModeForMonitor(p, pScrn->monitor);
|
|
- if (status == MODE_OK) {
|
|
- modeOK = TRUE;
|
|
- break;
|
|
- }
|
|
- }
|
|
- if (sizeMatch && !modeOK) {
|
|
- xf86DrvMsg(pScrn->scrnIndex, X_INFO,
|
|
- "Not using built-in mode \"%dx%d\" (%s)\n",
|
|
- mode->XResolution, mode->YResolution,
|
|
- xf86ModeStatusToString(status));
|
|
- }
|
|
- }
|
|
-
|
|
xf86ErrorFVerb(DEBUG_VERB,
|
|
"Mode: %x (%dx%d)\n", id, mode->XResolution, mode->YResolution);
|
|
xf86ErrorFVerb(DEBUG_VERB,
|