xf86-video-ati: Branch 'master'

Alex Deucher agd5f at kemper.freedesktop.org
Thu Jul 19 16:02:11 PDT 2007


 src/r128_driver.c |    3 +++
 1 files changed, 3 insertions(+)

New commits:
diff-tree 18b00b47a483e7854727e99126808ddf361e7a4a (from 882fe7631586b0a7919f808588a2ea4fb555f7e8)
Author: Alex Deucher <alex at t41p.hsd1.va.comcast.net>
Date:   Thu Jul 19 19:01:42 2007 -0400

    R128: don't clip modes to panel on laptops when only using the CRT port
    
    fixes bug 5832

diff --git a/src/r128_driver.c b/src/r128_driver.c
index b03bd42..6e26a6e 100644
--- a/src/r128_driver.c
+++ b/src/r128_driver.c
@@ -4257,6 +4257,9 @@ ModeStatus R128ValidMode(int scrnIndex, 
     ScrnInfoPtr   pScrn = xf86Screens[scrnIndex];
     R128InfoPtr   info  = R128PTR(pScrn);
 
+    if (info->BIOSDisplay == R128_BIOS_DISPLAY_CRT)
+	return MODE_OK;
+
     if(info->isDFP) {
         if(info->PanelXRes < mode->CrtcHDisplay ||
            info->PanelYRes < mode->CrtcVDisplay)


More information about the xorg-commit mailing list