Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Blurred image, v10 x86, dual screen, ATI, laptop.

Status
Not open for further replies.

kebabbert

Programmer
Nov 14, 2005
8
SE
I got a blurred image on the external TFT screen, why is that?
----------------------------
Ok, I got everything working now. A Dell Laptop D600 with ATI mobility Radeon 9000 running dual screen, internal 15" 1400x1050, external 20" TFT 1680x1050, on Solaris 10 x86. Thanx very much for your help!

What I did to get different resolutions working, was that I looked into /var/log/Xorg.0.log file, and added those numbers into the "Monitor" section:

...
(II) RADEON(0): Supported additional Video Mode:
(II) RADEON(0): clock: 146.2 MHz Image Size: 433 x 270 mm
(II) RADEON(0): h_active: 1680 h_sync: 1960 h_sync_end 2136 h_blank_end 2240 h_border: 0
(II) RADEON(0): v_active: 1050 v_sync: 1053 v_sync_end 1059 v_blanking: 1089 v_border: 0
(II) RADEON(0): Ranges: V min: 56 V max: 75 Hz, H min: 31 H max: 83 kHz, PixClock max 170 MHz
(II) RADEON(0): Monitor name: 20WGX2
....

transforms to:
ModeLine "1680x1050" 170.00 1680 1960 2136 2240 1050 1053 1059 1089




However, there is still a problem. On my external 20", the image is slightly blurred. The font are not razor sharp, which it is on my laptop screen. Maybe the problem is specific for Solaris?

*********************************
Section "ServerLayout"
Identifier "Dual Screen"
Screen 0 "LAPTOP_SCREEN" 0 0
Screen 1 "NEC20WGX2_SCREEN" RightOf "LAPTOP_SCREEN"
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
Option "Xinerama" "On"
EndSection

Section "Files"
RgbPath "/usr/X11/lib/X11/rgb"
ModulePath "/usr/X11/lib/modules"
FontPath "/usr/X11/lib/X11/fonts/TrueType/"
FontPath "/usr/X11/lib/X11/fonts/Type1/"
FontPath "/usr/X11/lib/X11/fonts/Type1/sun/"
FontPath "/usr/X11/lib/X11/fonts/F3bitmaps/"
FontPath "/usr/X11/lib/X11/fonts/misc/"
FontPath "/usr/X11/lib/X11/fonts/100dpi/"
FontPath "/usr/X11/lib/X11/fonts/75dpi/"
EndSection

Section "Module"
Load "IA"
Load "Xst"
Load "dbe"
Load "extmod"
Load "record"
Load "xtrap"
Load "glx"
Load "bitstream"
Load "type1"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "keyboard"
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/mouse"
EndSection

Section "Monitor"
#DisplaySize 290 210 # mm
# Modeline "1400x1050" 155.80 1400 1464 1784 1912 1050 1052 1064 1090 +hsync +vsync
Identifier "LAPTOP_MONITOR"
VendorName "SEC"
ModelName "3450"
EndSection
Section "Monitor"
DisplaySize 433 271 # mm
HorizSync 31.5 - 81.1
VertRefresh 56.0 - 75.0
ModeLine "1680x1050" 170.00 1680 1960 2136 2240 1050 1053 1059 1089
Identifier "NEC20WGX2_MONITOR"
VendorName "NEC"
ModelName "20WGX2"
EndSection


Section "Device"
Option "MonitorLayout" "TFT,CRT"
Identifier "0Radeon9000"
Driver "ati"
VendorName "ATI Technologies Inc"
BoardName "Radeon R250 Lf [Radeon Mobility 9000 M9]"
BusID "PCI:1:0:0"
Screen 0
EndSection
Section "Device"
Option "MonitorLayout" "TFT,CRT"
Identifier "1Radeon9000"
Driver "ati"
VendorName "ATI Technologies Inc"
BoardName "Radeon R250 Lf [Radeon Mobility 9000 M9]"
BusID "PCI:1:0:0"
Screen 1
EndSection


Section "Screen"
Identifier "LAPTOP_SCREEN"
Device "0Radeon9000"
Monitor "LAPTOP_MONITOR"
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1400x1050"
#Virtual 1680 1050
EndSubSection
EndSection
Section "Screen"
Identifier "NEC20WGX2_SCREEN"
Device "1Radeon9000"
Monitor "NEC20WGX2_MONITOR"
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1680x1050"
EndSubSection
EndSection
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top