Committed.

death writes:
 > Seperate modelines error out on: "width too large for virtual size" for 
 > everything since this virtual width then is 0. Virtual config does not work, 
 > max/default usable size is used instead.
 > 
 > Reason: via_driver.c:VIAPreInit: xf86ValidateModes is called with 
 > pScrn->virtual[XY] instead of pScrn->display->virtual[XY]
 > 
 > This looks like a plain oversight from via which has existed since 1.1. and is 
 > pretty trivial.
 > 
 > Thanks,
 > 
 > Luc Verhaegen
 > --- xc/programs/Xserver/hw/xfree86/drivers/via/via_driver.c 2003-08-25 
 > 04:05:39.000000000 +0200
 > +++ xc1/programs/Xserver/hw/xfree86/drivers/via/via_driver.c 2003-08-25 
 > 04:05:39.000000000 +0200
 > @@ -1504,8 +1504,8 @@
 >                            16 * pScrn->bitsPerPixel, /* pitch inc (bits) */
 >                            128,                      /* min height */
 >                            2048,                     /* max height */
 > -                          pScrn->virtualX,          /* virtual width */
 > -                          pScrn->virtualY,          /* virutal height */
 > +                          pScrn->display->virtualX, /* virtual width */
 > +                          pScrn->display->virtualY, /* virtual height */
 >                            pVia->videoRambytes,      /* size of video memory */
 >                            LOOKUP_BEST_REFRESH);     /* lookup mode flags */
_______________________________________________
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel

Reply via email to