On 30 Aug 2001 12:58:02 +0900, Curt Howland wrote: > > Since the debian-x mailing list explicitly states "no user support > issues", I'll try again here. > > Several applications are failing to display correctly in X11, due to a > problem with the display depths. I have been told I should have a > "display depths" something like this: > > > xdpyinfo | grep depths > > depths (7): 24, 1, 4, 8, 15, 16, 32 > > But instead, I get this: > > > xdpyinfo | grep depths > > depths (1): 24 > > I include below my XF86Config file, can someone please tell me what to > change? >
<snip> > > Section "Device" > > Identifier "Primary Card" > > VendorName "Unknown" > > BoardName "S3 ViRGE/MX (generic)" > > EndSection You should choose the driver for the card in the device section (at least IMHO) and put it in here. > > Section "Screen" > > Driver "Accel" What is this doing in here? > > Device "Primary Card" > > Monitor "Primary Monitor" > > DefaultColorDepth 24 > > BlankTime 0 > > SuspendTime 0 > > OffTime 0 > > SubSection "Display" > > Depth 8 > > Modes "1024x768" "800x600" "640x480" > > EndSubSection > > SubSection "Display" > > Depth 15 > > Modes "1024x768" "800x600" "640x480" > > EndSubSection > > SubSection "Display" > > Depth 16 > > Modes "1024x768" "800x600" "640x480" > > EndSubSection > > SubSection "Display" > > Depth 24 > > Modes "1024x768" "800x600" "640x480" > > EndSubSection > > SubSection "Display" > > Depth 32 > > Modes "1024x768" "800x600" "640x480" > > EndSubSection > > EndSection Are you sure the last "Screen" section is not overwriting the previous ones? Try neaming the screens sections and using them in the severlayout as below. > > > > Section "Screen" Overwriting previous screen? > > Driver "SVGA" What is this doing in here? > > Device "Primary Card" <snip> You should have a serverlayout section as below as well (IMHO) Section "ServerLayout" Identifier "Default Layout" Screen "Screen" InputDevice "Keyboard" InputDevice "Pointer" EndSection I hope this helps. --mike