Using fglrx and trying to set up dual-monitor setup here. Here's what xrandr says:
Screen 0: minimum 320 x 200, current 1400 x 1050, maximum 1600 x 1600
So, you know this one already, right? All I have to do is adjust Virtual screen size in xorg.conf. But I have, here's the whole file:
Section "ServerLayout"
Identifier "aticonfig Layout"
Screen 0 "virtual screen" 0 0
EndSection
Section "Monitor"
Identifier "Monitor."
Option "DPMS" "true"
EndSection
Section "Device"
Identifier "hd6450"
Driver "fglrx"
BusID "PCI:1:0:0"
Option "mtrr" "no"
Option "no_dri" "no"
Option "no_accel" "no"
EndSection
Section "Screen"
Identifier "virtual screen"
Device "hd6450"
SubSection "Display"
Virtual 3600 1080
EndSubSection
EndSection
Judging from Xorg.0.log, the resolution is silently dropped to 1600x1600 which is not enough. If I set the Virtual size to 2048 2048 I can get my monitors at native resolution of 1680x1050 but I cannot use the second monitor:
~ % xrandr --output CRT1 --left-of DFP2
xrandr: screen cannot be larger than 2048x2048 (desired size 3360x1050)
So what to do? I've tried fglrx versions 11.11 and 11.8. Oddly enough, amdcccle doesn't let me edit any of the settings. The inputs are all disabled from editing. Thanks for your attention.