You are not logged in.

#1 2008-02-19 00:18:09

saneone
Member
From: Warsaw, PL/Bridgeport, CT
Registered: 2007-06-05
Posts: 70

refresh rate :/

My LCD got broken, so I had to connect my old CRT - iiyama Vision Master Pro 451" 19" Natural Flat, which is capable of doing 1600x1200@92Hz and 1280x1024@107 Hz - few years ago I was using 1280x1024@100 Hz mode in MS Windows w/o any problems...
Now I can't force X to set refresh rate bigger than 75 Hz... I tried to add modelines generated by gtf to the Screen section, but it looks like they are just ignored...

KDE Control Center show only stupid "50" and "54" Hz roll
nvidia control panel also doesn't show higher frequencies to choose from...
zrzut12eg7.png

My xorg.conf

Section "ServerLayout"
    Identifier     "Xorg Configured"
    Screen      0  "Screen0" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
        InputDevice    "Evdev Mouse" "CorePointer"
EndSection

Section "ServerFlags"
    Option "AllowMouseOpenFail"  "true"
    
EndSection

Section "Files"
    RgbPath      "/usr/share/X11/rgb"
    ModulePath   "/usr/lib/xorg/modules"
    FontPath     "/usr/share/fonts/misc:unscaled"
    FontPath     "/usr/share/fonts/misc"
    FontPath     "/usr/share/fonts/75dpi:unscaled"
    FontPath     "/usr/share/fonts/75dpi"
    FontPath     "/usr/share/fonts/100dpi:unscaled"
    FontPath     "/usr/share/fonts/100dpi"
# Additional fonts: Locale, Gimp, TTF...
    #FontPath     "/usr/share/fonts/cyrillic"
# True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
    FontPath     "/usr/share/fonts/Type1"
    FontPath     "/usr/share/fonts/TTF"
EndSection

Section "Module"
        Load  "dbe"
    Load  "extmod"
     SubSection      "extmod"
             Option        "omit xfree86-dga"
         EndSubSection 
    Load  "glx"
        Load  "type1"
    Load  "freetype"
EndSection

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "keyboard"
        Option      "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "pl"
    Option "XkbVariant" ""
EndSection

Section "InputDevice"
        Identifier            "Evdev Mouse"
        Driver                "evdev"
    #Option "Device"      "/dev/input/event5"
    Option "Name"           "Logitech USB-PS/2 Optical Mouse"    
    Option "CorePointer"
EndSection

Section "Monitor"
    Identifier "Monitor0"
        VendorName     "iiyama"
        ModelName      "Vision Master Pro 451"
    HorizSync       30.0 - 115.0
        VertRefresh     100
        Option         "DPMS"
EndSection

Section "Device"
    Identifier  "Card0"
    Driver      "nvidia"
    VendorName  "NVIDIA Corporation"
        BoardName   "GeForce 6600 GT"
    Option "DPI" "96x96"
        Option "TripleBuffer" "True"
    Option "AllowGLXWithComposite" "True"
        Option "AddARGBGLXVisuals" "True"
    Option "RenderAccel" "True"
    Option "Coolbits" "1"
    Option "NoLogo" "True"
EndSection

Section "Screen"
    Identifier "Screen0"
    Device     "Card0"
    Monitor    "Monitor0"
    DefaultColorDepth 24
    SubSection "Display"
        Depth     1
        Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth     4
        Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth     8
        Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth     15
        Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth     16
        Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth     24
        Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection


Section "Extensions"
  Option "Composite" "Enable"
  Option "RENDER" "Enable"
EndSection

I'm begging You all to help me yikes

Last edited by saneone (2008-02-19 00:23:47)


I never sleep, cause sleep is the cousin of death

Offline

#2 2008-02-19 00:22:45

fwojciec
Member
Registered: 2007-05-20
Posts: 1,411

Re: refresh rate :/

I don't know if this still applies (I actually use TwinView) but this is from the nvidia driver docs:

Option "DynamicTwinView" "boolean"

    Enable or disable support for dynamically configuring TwinView on this X screen. When DynamicTwinView is enabled (the default), the refresh rate of a mode (reported through XF86VidMode or XRandR) does not correctly report the refresh rate, but instead is a unique number such that each MetaMode has a different value. This is to guarantee that MetaModes can be uniquely identified by XRandR.

    When DynamicTwinView is disabled, the refresh rate reported through XRandR will be accurate, but NV-CONTROL clients such as nvidia-settings will not be able to dynamically manipulate the X screen's MetaModes. TwinView can still be configured from the X config file when DynamicTwinView is disabled.

    Default: DynamicTwinView is enabled.

In other words -- try adding

Option "DynamicTwinView" "false"

to the "Device" section in xorg.conf and see if that changes anything.

Last edited by fwojciec (2008-02-19 00:23:16)

Offline

#3 2008-02-19 00:31:18

saneone
Member
From: Warsaw, PL/Bridgeport, CT
Registered: 2007-06-05
Posts: 70

Re: refresh rate :/

fwojciec wrote:

I don't know if this still applies (I actually use TwinView) but this is from the nvidia driver docs:

Option "DynamicTwinView" "boolean"

    Enable or disable support for dynamically configuring TwinView on this X screen. When DynamicTwinView is enabled (the default), the refresh rate of a mode (reported through XF86VidMode or XRandR) does not correctly report the refresh rate, but instead is a unique number such that each MetaMode has a different value. This is to guarantee that MetaModes can be uniquely identified by XRandR.

    When DynamicTwinView is disabled, the refresh rate reported through XRandR will be accurate, but NV-CONTROL clients such as nvidia-settings will not be able to dynamically manipulate the X screen's MetaModes. TwinView can still be configured from the X config file when DynamicTwinView is disabled.

    Default: DynamicTwinView is enabled.

In other words -- try adding

Option "DynamicTwinView" "false"

to the "Device" section in xorg.conf and see if that changes anything.

Now I can see in KDE Control Center two values - 60 and 75 Hz...
I don't see the screen, which I pasted in my previous post in nvidia control panel... only an info that refresh rate is 75Hz


I never sleep, cause sleep is the cousin of death

Offline

#4 2008-02-19 00:41:45

fwojciec
Member
Registered: 2007-05-20
Posts: 1,411

Re: refresh rate :/

I looked up the specifications for the monitor you are using:

Horizontal refresh rate: 30-115
Vertical refresh rate: 50-180

from http://www.monitorworld.com/Monitors/ii … ro451.html

These are the ranges you should have in xorg.conf:

HorizSync       30-115
VertRefresh     50-180

Offline

#5 2008-02-19 06:14:03

saneone
Member
From: Warsaw, PL/Bridgeport, CT
Registered: 2007-06-05
Posts: 70

Re: refresh rate :/

fwojciec wrote:

I looked up the specifications for the monitor you are using:

Horizontal refresh rate: 30-115
Vertical refresh rate: 50-180

from http://www.monitorworld.com/Monitors/ii … ro451.html

These are the ranges you should have in xorg.conf:

HorizSync       30-115
VertRefresh     50-180

It doesn't change anything sad


I never sleep, cause sleep is the cousin of death

Offline

#6 2008-02-20 13:45:23

saneone
Member
From: Warsaw, PL/Bridgeport, CT
Registered: 2007-06-05
Posts: 70

Re: refresh rate :/

any1?


I never sleep, cause sleep is the cousin of death

Offline

Board footer

Powered by FluxBB