Setting refresh rate manuall in display options?

hi all,
I have recently received a Dell 1908WFP monitor, which runs at a native resolution of 1440x900x75hz.
When i connect it to my macbook pro using the mini-display-port-to-VGA-connector, this resolution is detected fine.
When connecting with the DVI connector, the resolution 1440x900 is setup properly, but the vertical refresh rate is set to 60hz. In display preferences the option for 75hz is greyed out.
Is there a way to force the refresh rate to 75hz?
thanks,
lennard

Hmm, I think I'm missing something here but I just looked at GraphicsDevice.java and as far as I can see it doesn't check for refresh rates.
     * Returns the current display mode of this
     * <code>GraphicsDevice</code>.
     * @return the current display mode of this graphics device.
     * @see #setDisplayMode(DisplayMode)
     * @since 1.4
    public DisplayMode getDisplayMode() {
        GraphicsConfiguration gc = getDefaultConfiguration();
        Rectangle r = gc.getBounds();
        ColorModel cm = gc.getColorModel();
        return new DisplayMode(r.width, r.height, cm.getPixelSize(), 0);//REFRESH_RATE_UNKNOWN = 0; ??
     * Returns all display modes available for this     
     * <code>GraphicsDevice</code>.
     * @return all of the display modes available for this graphics device.
     * @since 1.4
    public DisplayMode[] getDisplayModes() {
        return new DisplayMode[] { getDisplayMode() };
    }Or have I read this wrong?

Similar Messages

  • Can't set refresh rate to 75 with Samsung SyncMaster 932 BF

    Hi,
    I can't set refresh rate to 75Hz both in Gnome display properties and in Nvidia panel. So i have it stuck at 60Hz.
    I've tried several solutions i found on forums but none of them worked
    Here is my xorg.conf :
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig: version 1.0 (buildmeister@builder63) Tue Jan 6 10:03:02 PST 2009
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts"
    EndSection
    Section "Module"
    Load "glx"
    Load "dbe"
    Load "extmod"
    Load "xtrap"
    Load "record"
    Load "freetype"
    Load "bitmap"
    Load "ddc"
    EndSection
    Section "ServerFlags"
    Option "AutoAddDevices" "True"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    Option "XkbLayout" "fr"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Samsung"
    ModelName "SyncMaster 932 BF"
    UseModes "Modes[0]"
    HorizSync 30.0 - 81.0
    VertRefresh 56.0 - 75.0
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "ShadowFB" # [<bool>]
    #Option "DefaultRefresh" # [<bool>]
    #Option "ModeSetClearScreen" # [<bool>]
    Identifier "Card0"
    Driver "nvidia"
    VendorName "nVidia Corporation"
    BoardName "G92 [GeForce 8800 GTS]"
    EndSection
    Section "Modes"
    Identifier "Modes[0]"
    # 1280x1024 @ 75.00 Hz (GTF) hsync: 80.17 kHz; pclk: 138.54 MHz
    Modeline "1280x1024_75.00" 138.54 1280 1368 1504 1728 1024 1025 1028 1069 -HSync +Vsync
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "TwinView" "0"
    SubSection "Display"
    Depth 24
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    EndSection
    Thanks in advance if i can get any help
    EDIT : In Gnome display properties it says "Unknown Screen"
    Last edited by Kaloos (2009-04-27 20:49:32)

    1st :  It runs perfectly fine at 1280x1024@75Hz in Windows XP/Vista, so there is no reason it shouldn't work in Linux. In Nvidia-panel there is even the 75Hz option in the drop-down list when resolution is 1280x1024.
    2nd : It isn't easy on the eyes at 60Hz compared to 75Hz, even more when i play games (Quake 3 for example).
    Last edited by Kaloos (2009-04-27 21:22:18)

  • Satellite A100-153: What are verical and horizontal refresh rates for my display

    How can I found out what are verical and horizontal refresh rates for my display?

    Hi
    Do you mean the vertical and horizontal display resolution???
    Anyway all informations should be listed in the user manual.
    I dont know exactly what appendix is it but it must be placed somewhere at the end of the user manual.
    Such infos are listed also in my user manual which was delivered and preinstalled on my Satellite notebook.

  • Set Exchange rate manually in Invoice

    Hi friends,
    While creation of the Invoice....I want to manually change the Exchange rate...
    The Set Exchange rate box if  selected will solve my purpose ...But while creation of Invoice this is in display mode.....how can I activate this?
    Thanks
    Cheers

    Dear Cheers,
    No you cannot chane Exchange rate at the time of Invoice.
    Even we had this requirement, but we could not fulfill it thru SAP standard options.
    As suggested above, you will have to modify standard programs / screens,
    Hope this helps...
    Thanks,
    JIgnesh Mehta

  • Setting refresh rate with DisplayMode

    I'm having a problems setting the refresh rate of the DisplayMode, originally I used this method to create a display mode:
    DisplayMode(320, 240, 16, DisplayMode.REFRESH_RATE_UNKNOWN);This worked fine and ran my game at the above resolution, however I want the refresh rate to be 60hz so I tried this:
    DisplayMode(320, 240, 60);The game ran, but the resolution did not change and the game played in a little 320, 240, box in the top left corner of the screen leaving the rest of the screen white. This is the same problem I have when ever I try the GAGE shooter demo.
    Am I setting up the DisplayMode right, or is this a known bug.
    I've only tried this on my computer running winME and the SDK 1.4.2_01.
    Thanks.

    Hmm, I think I'm missing something here but I just looked at GraphicsDevice.java and as far as I can see it doesn't check for refresh rates.
         * Returns the current display mode of this
         * <code>GraphicsDevice</code>.
         * @return the current display mode of this graphics device.
         * @see #setDisplayMode(DisplayMode)
         * @since 1.4
        public DisplayMode getDisplayMode() {
            GraphicsConfiguration gc = getDefaultConfiguration();
            Rectangle r = gc.getBounds();
            ColorModel cm = gc.getColorModel();
            return new DisplayMode(r.width, r.height, cm.getPixelSize(), 0);//REFRESH_RATE_UNKNOWN = 0; ??
         * Returns all display modes available for this     
         * <code>GraphicsDevice</code>.
         * @return all of the display modes available for this graphics device.
         * @since 1.4
        public DisplayMode[] getDisplayModes() {
            return new DisplayMode[] { getDisplayMode() };
        }Or have I read this wrong?

  • How to set screen refresh rate for linux console (runlevel 3)?

    Hi,
    I have a CRT monitor, so the refresh rate is always needed to configure. I use 720x400 resolution in console, but the refresh rate is 70hz. Are there any ways to get it higher in console (with KMS or without)?
    Last edited by AleXoundOS (2009-11-04 12:27:09)

    thank you for replies
    But setting the resolution, e.g. vga=773, would not change the refresh rate, or would it?
    It would, but usually not to the maximum provided by the monitor. May be it is real to find the place, where it looks for available resolutions linked with refresh rates...
    According to the Gentoo page I can use uvesafb for setting refresh rate as well as other settings. And then I found uvesafb page in ArchWiki. But the way to set proper refresh rate is not so easy as I expected, because I need to install uvesafb and it needs additional daemon. And also I think KMS can't work here. However it's better than nothing, if I don't find any other way, I will try this one.

  • Xorg and refresh rates

    I'm running Solaris Express 10 x86 4/05 on a Dell Optiplex GX260. Xorg refuses to give me a refresh rate higher than 60Hz. This is using the i810 driver but it also happens with the VESA driver. Here's my xorg.conf:
    Section "Module"
    # This loads the DBE extension module.
        Load        "dbe"   # Double buffer extension
    # This loads the miscellaneous extensions module, and disables
    # initialisation of the XFree86-DGA extension within that module.
        SubSection  "extmod"
          Option    "omit xfree86-dga"   # don't initialise the DGA extension
        EndSubSection
    # This loads the font modules
        Load        "bitstream"
        Load        "type1"
    #    Load        "speedo"
    # This loads the Xst module
         Load       "Xst"
    # This loads the SolarisIA module
         Load       "IA"
    # This loads the GLX module
    #    Load       "glx"
    # This loads the DRI module
    #    Load       "dri"
    EndSection
    # Files section.  This allows default font and rgb paths to be set
    Section "Files"
    # The location of the RGB database.  Note, this is the name of the
    # file minus the extension (like ".txt" or ".db").  There is normally
    # no need to change the default.
        RgbPath     "/usr/X11/lib/X11/rgb"
    # Multiple FontPath entries are allowed (which are concatenated together),
    # as well as specifying multiple comma-separated entries in one FontPath
    # command (or a combination of both methods)
        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/"
    #    FontPath   "/usr/X11/lib/X11/fonts/local/"
    #    FontPath   "/usr/X11/lib/X11/fonts/Speedo/"
    #    FontPath   "/usr/X11/lib/X11/fonts/freefont/"
    # The module search path.  The default path is shown here.
    #    ModulePath "/usr/X11/lib/modules"
    EndSection
    # Server flags section.
    Section "ServerFlags"
    # Uncomment this to cause a core dump at the spot where a signal is
    # received.  This may leave the console in an unusable state, but may
    # provide a better stack trace in the core dump to aid in debugging
    #    Option "NoTrapSignals"
    # Uncomment this to disable the <Crtl><Alt><Fn> VT switch sequence
    # (where n is 1 through 12).  This allows clients to receive these key
    # events.
    #    Option "DontVTSwitch"
    # Uncomment this to disable the <Crtl><Alt><BS> server abort sequence
    # This allows clients to receive this key event.
    #    Option "DontZap"
    # Uncomment this to disable the <Crtl><Alt><KP_+>/<KP_-> mode switching
    # sequences.  This allows clients to receive these key events.
    #    Option "Dont Zoom"
    # Uncomment this to disable tuning with the xvidtune client. With
    # it the client can still run and fetch card and monitor attributes,
    # but it will not be allowed to change them. If it tries it will
    # receive a protocol error.
    #    Option "DisableVidModeExtension"
    # Uncomment this to enable the use of a non-local xvidtune client.
    #    Option "AllowNonLocalXvidtune"
    # Uncomment this to disable dynamically modifying the input device
    # (mouse and keyboard) settings.
    #    Option "DisableModInDev"
    # Uncomment this to enable the use of a non-local client to
    # change the keyboard or mouse settings (currently only xset).
    #    Option "AllowNonLocalModInDev"
    EndSection
    # Input devices
    # Core keyboard's InputDevice section
    Section "InputDevice"
        Identifier  "Keyboard1"
        Driver      "Keyboard"
    # For most OSs the protocol can be omitted (it defaults to "Standard").
    # When using XQUEUE (only for SVR3 and SVR4, but not Solaris),
    # uncomment the following line.
    #    Option     "Protocol"      "Xqueue"
        Option "AutoRepeat" "500 30"
    # Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
    #    Option     "Xleds"      "1 2 3"
    #    Option "LeftAlt"     "Meta"
    #    Option "RightAlt"    "ModeShift"
    # To customise the XKB settings to suit your keyboard, modify the
    # lines below (which are the defaults).  For example, for a non-U.S.
    # keyboard, you will probably want to use:
    #    Option "XkbModel"    "pc105"
    # If you have a US Microsoft Natural keyboard, you can use:
    #    Option "XkbModel"    "microsoft"
    # Then to change the language, change the Layout setting.
    # For example, a german layout can be obtained with:
    #    Option "XkbLayout"   "de"
    # or:
    #    Option "XkbLayout"   "de"
    #    Option "XkbVariant"  "nodeadkeys"
    # If you'd like to switch the positions of your capslock and
    # control keys, use:
    #    Option "XkbOptions"  "ctrl:swapcaps"
    # These are the default XKB settings for Xorg
    #    Option "XkbRules"    "xorg"
    #    Option "XkbModel"    "pc105"
    #    Option "XkbLayout"   "us"
    #    Option "XkbVariant"  ""
    #    Option "XkbOptions"  ""
    #    Option "XkbDisable"
        Option "XkbRules"   "xorg"
        Option "XkbModel"   "pc101"
        Option "XkbLayout"  "us"
    EndSection
    # Core Pointer's InputDevice section
    Section "InputDevice"
    # Identifier and driver
        Identifier  "Mouse1"
        Driver      "mouse"
        Option "Protocol"    "Auto"
        Option "Device"      "/dev/mouse"
    # Mouse-speed setting for PS/2 mouse.
    #    Option "Resolution"        "256"
    # When using XQUEUE, comment out the above two lines, and uncomment
    # the following line.
    #    Option "Protocol"  "Xqueue"
    # Baudrate and SampleRate are only for some Logitech mice. In
    # almost every case these lines should be omitted.
    #    Option "BaudRate"  "9600"
    #    Option "SampleRate"        "150"
    # Emulate3Buttons is an option for 2-button Microsoft mice
    # Emulate3Timeout is the timeout in milliseconds (default is 50ms)
        Option "Emulate3Buttons"
    #    Option "Emulate3Timeout"    "50"
    # ChordMiddle is an option for some 3-button Logitech mice
    #    Option "ChordMiddle"
    EndSection
    # Other input device sections
    # this is optional and is required only if you
    # are using extended input devices.  This is for example only.  Refer
    # to the xorg.conf man page for a description of the options.
    # Section "InputDevice"
    #    Identifier  "Mouse2"
    #    Driver      "mouse"
    #    Option      "Protocol"      "MouseMan"
    #    Option      "Device"        "/dev/mouse2"
    # EndSection
    # Section "InputDevice"
    #    Identifier "spaceball"
    #    Driver     "magellan"
    #    Option     "Device"        "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    #    Identifier "spaceball2"
    #    Driver     "spaceorb"
    #    Option     "Device"        "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    #    Identifier "touchscreen0"
    #    Driver     "microtouch"
    #    Option     "Device"        "/dev/ttyS0"
    #    Option     "MinX"          "1412"
    #    Option     "MaxX"          "15184"
    #    Option     "MinY"          "15372"
    #    Option     "MaxY"          "1230"
    #    Option     "ScreenNumber"  "0"
    #    Option     "ReportingMode" "Scaled"
    #    Option     "ButtonNumber"  "1"
    #    Option     "SendCoreEvents"
    # EndSection
    # Section "InputDevice"
    #    Identifier "touchscreen1"
    #    Driver     "elo2300"
    #    Option     "Device"        "/dev/ttyS0"
    #    Option     "MinX"          "231"
    #    Option     "MaxX"          "3868"
    #    Option     "MinY"          "3858"
    #    Option     "MaxY"          "272"
    #    Option     "ScreenNumber"  "0"
    #    Option     "ReportingMode" "Scaled"
    #    Option     "ButtonThreshold"       "17"
    #    Option     "ButtonNumber"  "1"
    #    Option     "SendCoreEvents"
    # EndSection
    # Monitor section
    # Any number of monitor sections may be present
    Section "Monitor"
        Identifier  "My Monitor"
    # HorizSync is in kHz unless units are specified.
    # HorizSync may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
        HorizSync   30-85
    #    HorizSync  30-64         # multisync
    #    HorizSync  31.5, 35.2    # multiple fixed sync frequencies
    #    HorizSync  15-25, 30-50  # multiple ranges of sync frequencies
    # VertRefresh is in Hz unless units are specified.
    # VertRefresh may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
        VertRefresh 48-120
    EndSection
    # Graphics device section
    # Any number of graphics device sections may be present
    # Standard VGA Device:
    Section "Device"
        Identifier  "Standard VGA"
        VendorName  "Unknown"
        BoardName   "Unknown"
    # The chipset line is optional in most cases.  It can be used to override
    # the driver's chipset detection, and should not normally be specified.
    #    Chipset    "generic"
    # The Driver line must be present.  When using run-time loadable driver
    # modules, this line instructs the server to load the specified driver
    # module.  Even when not using loadable driver modules, this line
    # indicates which driver should interpret the information in this section.
        Driver     "vga"
    # The BusID line is used to specify which of possibly multiple devices
    # this section is intended for.  When this line isn't present, a device
    # section can only match up with the primary video device.  For PCI
    # devices a line like the following could be used.  This line should not
    # normally be included unless there is more than one video device
    # intalled.
    #    BusID      "PCI:0:10:0"
    #    VideoRam   256
    #    Clocks     25.2 28.3
    EndSection
    # Device configured by xorgconfig:
    Section "Device"
        Identifier  "** Intel i810 (generic)               [i810]"
        Driver      "i810"
        VideoRam    8192
        # Insert Clocks lines here if appropriate
    EndSection
    # Screen sections
    # Any number of screen sections may be present.  Each describes
    # the configuration of a single screen.  A single specific screen section
    # may be specified from the X server command line with the "-screen"
    # option.
    Section "Screen"
        Identifier  "Screen 1"
        Device      "** Intel i810 (generic)               [i810]"
        Monitor     "My Monitor"
        DefaultDepth 24
        Subsection "Display"
            Depth       8
            Modes       "1024x768"
            ViewPort    0 0
        EndSubsection
        Subsection "Display"
            Depth       16
            Modes       "1024x768"
            ViewPort    0 0
        EndSubsection
        Subsection "Display"
            Depth       24
            Modes       "1024x768"
            ViewPort    0 0
        EndSubsection
    EndSection
    # ServerLayout sections.
    # Any number of ServerLayout sections may be present.  Each describes
    # the way multiple screens are organised.  A specific ServerLayout
    # section may be specified from the X server command line with the
    # "-layout" option.  In the absence of this, the first section is used.
    # When now ServerLayout section is present, the first Screen section
    # is used alone.
    Section "ServerLayout"
    # The Identifier line must be present
        Identifier  "Simple Layout"
    # Each Screen line specifies a Screen section name, and optionally
    # the relative position of other screens.  The four names after
    # primary screen name are the screens to the top, bottom, left and right
    # of the primary screen.  In this example, screen 2 is located to the
    # right of screen 1.
        Screen "Screen 1"
    # Each InputDevice line specifies an InputDevice section name and
    # optionally some options to specify the way the device is to be
    # used.  Those options include "CorePointer", "CoreKeyboard" and
    # "SendCoreEvents".
        InputDevice "Mouse1" "CorePointer"
        InputDevice "Keyboard1" "CoreKeyboard"
    EndSection
    # Section "DRI"
    #    Mode 0666
    # EndSectionIf I use the Xsun server, everything works great. I get 1024x768 at 85Hz. With Xorg, I get 1024x768 at 60Hz. Why won't Xorg drive the display at a decent refresh rate?
    Thanks.

    I upped the log verbosity on Xorg and checked the Xorg.0.log file. I found some interesting things.
    First, I found this line:
    (II) I810(0): Will use BIOS call 0x5f05 to set refresh rates for CRTs.
    Later on, I found these:
    (WW) I810(0): Extended BIOS function 0x5f05 not supported.
    (II) I810(0): BIOS call 0x5f05 not supported, setting refresh with VBE 3 method.
    (WW) I810(0): Set VBE Mode rejected this modeline.
    Trying standard mode instead!
    Presumably, "standard mode" is an eye-watering 60Hz.
    This is on a Dell Optiplex GX260 with BIOS revision A09. The video chipset is an onboard Intel 82845 and the driver is Xorg's i810.
    Everything works fine with Sun's X server. I get a nice 87Hz refresh at 1024x768. I'm surprised that Xorg can't set the refresh on this machine. It's listed as Test Suite Level 2 certified in the HCL. Unless somebody can tell me what I'm doing wrong here, I'm going to post this incompatibility as a comment on the HCL.

  • [solved] Tearing Problem / Refresh Rate

    Hey,
    i have a huge tearing problem. Watching movies is a real torture.
    I think it's the refresh rate. The recommended refresh rate for my display is 60Hz (@1920x1080p). But i can only choose 50Hz in the XFCE settings (link).
    Anyone can say how to change this to 60Hz? If any configs or hardware specifications are needed, please let me know.
    Last edited by arcc (2012-02-13 21:25:20)

    It's a nvidia 8800 GTS.
    If I choose Resolution: Auto in nvidia-settings I can only use Refresh Rate: 50Hz in XFCE settings.
    If I choose Resolution: 1920x1080 60Hz in nvidia-settings I can use Refresh Rate: 50Hz or 122Hz in XFCE settings.
    Here the monitor part of xorg.conf:
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "AOC 2795E"
    HorizSync 30.0 - 83.0
    VertRefresh 55.0 - 75.0
    Option "DPMS"
    EndSection
    Sync to VBlank is always enabled in nvidia-settings.
    But tearing anyway...

  • Refresh rate HP 850 G1 (Intel 4400)

    Hi all, I have a HP 850 G1 laptop and in general I'm very happy with it. In the past I only had a slight issue with screen flickering at lower brightness settings, but setting the refresh rate to 40p hz resolved that issue. After updating to Windows 10, however, it was no longer possible to set the refresh rate to 40p hz. Since I hoped reverting back to Windows 8 would solve it, I performed a factory reset. I am currently using Windows 8 again but it's still not possible to switch to 40p hz, not even through the Intel Custom Mode App.  The graphics report from the Intel graphics control panel confirms that the monitor supports the1920x1080x40p hz mode. Any help/suggestions to enable the 40p hz setting again is greatly appreciated!  Driver Version: 10.18.14.4251
    Operating System: Windows* 8 Pro (6.2.9200)
    Default Language: Dutch (Netherlands)
    Physical Memory: 3993 MB
    Vendor ID: 8086
    Device ID: 0A16
    Device Revision: 09
    Video BIOS: 2175.1
    Current Resolution: 1920 x 1080 
    Processor: Intel(R) Core(TM) i5-4200U CPU @ 1.60GHz
    Processor Speed: 2295 MHz
    Processor Graphics in Use: Intel(R) HD Graphics 4400
    Shader Version: 5.0
    OpenGL* Version: 4.3
    OpenCL* Version: 1.2
    * Microsoft DirectX* *
    Runtime Version: 11.1
    Hardware-Supported Version: 11.1 
    * Devices connected to the Graphics Accelerator *
    Active Displays: 1 
    * Built-in Display *
    Display Type: Digital
    DDC2 Protocol: Supported
    Gamma: 2.2
    Connector Type: Embedded DisplayPort
    Device Type: Built-in Display
    Maximum Image Size
    Horizontal Size: 13.39 inches
    Vertical Size: 7.48 inches
    Supported Modes
    1920 x 1080 (60p Hz)
    1920 x 1080 (40p Hz)  Raw EDID:
    00 FF FF FF FF FF FF 00 0D AE C2 15 00 00 00 00
    04 17 01 04 95 22 13 78 02 46 35 9E 57 57 94 27
    14 50 54 00 00 00 01 01 01 01 01 01 01 01 01 01
    01 01 01 01 01 01 B4 3B 80 4A 71 38 34 40 5A 3C
    69 00 58 C2 10 00 00 1A CD 27 80 4A 71 38 34 40
    5A 3C 69 00 58 C2 10 00 00 1A 00 00 00 00 00 00
    00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02
    00 0C 33 FF 0F 3C 96 21 14 33 96 00 00 00 00 70

    Hi
    I have noticed that on some Toshiba notebooks the screen refresh rate is fixed on 60 Hz. I have two of them. On Tecra M1 is fixed and on Satellite 1900 not. I have tested it and there is no difference if the refresh rate is changed.
    The TFT technology is much better than on usual monitors where the display flickering is visible on lower refresh rate. On display you will not see any flickering. In my opinion there is no reason for panic.
    Enjoy the life!!!

  • Satellite M55-s3315: Screen refresh rate is 60 Hertz?!

    I have bought Toshiba m55-s3315 analog m50-s.... with intel 910 built-in, shared dynamic 128 mb memory; screen - 14.0" WXGA widescreen display with Toshiba TruBrite . Only refresh rate i get is 60 Hertz. I have updated intel chip software and toshiba also ... I would like to know is it possible to get more than 60 Hertz. The only way is to get 85 Hertz is to add extarnal monitor. I there oportinity to get at least 75 Hertz screen refresh rate ??? It was possible with my old HP Pavilion ze 5000.
    May be someone could explain me??
    Thank in advance!!!

    Hi
    I have noticed that on some Toshiba notebooks the screen refresh rate is fixed on 60 Hz. I have two of them. On Tecra M1 is fixed and on Satellite 1900 not. I have tested it and there is no difference if the refresh rate is changed.
    The TFT technology is much better than on usual monitors where the display flickering is visible on lower refresh rate. On display you will not see any flickering. In my opinion there is no reason for panic.
    Enjoy the life!!!

  • Set permanent monitor refresh rate without xorg.conf

    Hi everyone,
    Came back to archlinux, made a clean install with gnome 3. Found out that my GDM and Gnome monitor refresh rate is wrong. For GDM I solved it by adding   xrandr -s 1024x768 -r 85 to the gdm init script. Maybe it's ugly, but at least working. I've got no xorg.conf and I don't want to create it only because of this problem. Using GUI screen settings in System preferences I managed only to set permanently correct resolution (1024x768) but the refresh rate cannot be changed there, so every time I boot now I have correct resolution and refresh rate for GDM, but after login I have 1024x768@60 only, so I have to manually issue   'xrandr -r 85' every time I login. Can I fix it without creating xorg.conf file under /etc/X11? What I already tried was creating the config file under  /etc/X11/xorg.conf.d/  and set proper resolution and refresh rate there, but it didn't help. If someone has advice or idea, i will be very grateful. Thanks a lot in advance.

    I think you need to specify the values from the manufacturer's website.
    Here's my /etc/X11/xorg.conf.d/10-monitor.conf:
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "DELL"
    ModelName "U2311H"
    HorizSync 30.0 - 83.0
    VertRefresh 56.0 - 76.0
    Option "DPMS"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nouveau"
    VendorName "NVIDIA Corporation"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    I probably don't need to specify "Driver" with open-source drivers, but it's easier to just replace it with "nvidia", since I sometimes switch to the proprietary ones.
    $ xrandr
    Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 4096 x 4096
    VGA-1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 509mm x 286mm
    1920x1080 60.0*+
    1680x1050 60.0
    1680x945 60.0
    1400x1050 74.9 60.0
    1600x900 60.0
    1280x1024 75.0 60.0
    1440x900 75.0 59.9
    1280x960 60.0
    1366x768 60.0
    1360x768 60.0
    1280x800 74.9 59.8
    1152x864 75.0
    1280x768 74.9 59.9
    1024x768 75.1 70.1 60.0
    1024x576 60.0
    800x600 72.2 75.0 60.3 56.2
    848x480 60.0
    640x480 72.8 75.0 60.0
    720x400 70.1

  • Second display refresh rate lower in Mac OSX than Windows

    I use a Mitsubishi Diamond Pro 2070SB CRT monitor connected to my MacBok via a miniDVI to VGA adapter; I span the desktop on both monitors (i.e. I do not use the Mirror Displays option). I use this configuration in both Mac OSX and Windows (via bootcamp). On Windows, I can set the refreesh rate of my CRT monitor to 75 Hz at 1600x1200, but I am stuck to 60 Hz on Mac OSX at 1600x1200. To get a more respectable refresh rate on my CRT, I need to lower the resolution to 1400x1050.
    Obviously, the video card of the MacBook can handle a second display at 1600x1200 at 75 Hz since I can do that on Windows. Any ideas how to get the same result on Mac OSX?

    Either DisplayConfigX or SwitchRes X should be able to remedy this. But I am at a loss to explain why OS X would itself not allow for the 75Hz choice.

  • Increase refresh rate of my LCD display

    Hey hey hey. How can I increase the refresh rate available for my LCD display? Should I increase the refresh rate? I cannnot find where to change it.

    There are different refresh rates that you can set, but I agree, 60 should be adquate. You can check this under Control Panel, Display, Settings, Then Click on Advanced, then Monitor. There you will see the refresh rate. Unclick the "Hide modes..." and you will see other rates which may not be able to be applied to your machine.

  • T61p Wuxga display refresh rates

    Hi!
    I suspect that my GNU/Linux installation sets the wrong refresh rates for my 15.4" WUXGA 1920x1200 display. It sets the vertical rate at 50, which seems very low.
    I can't seem to find what the correct rates are in the documentation that came with the computer. Does anyone know? If you don't know the horizontal rate, I'm still interested in the vertical rate. What does Vista set? (I removed Vista, so I can't check myself.)
    Please help!

    Adamaxus -- searching the web I find a lot of such claims. I didn't know this. But I do know from my own experience that vertrefresh has a huge impact on my stationary lcd monitor. Are there different kinds of lcds that behave differently in respect to vertrefresh?
    Anyway, I don't have any flicker on my T61p screen. It only bothers me that xorg and nvidia-settings report different refresh rates, and that some GL applications might get the wrong info and slow down because of it.This is one of the explanations floating around the net for slow gl desktops on T61p.
    If 50 is the default refresh rate, I would think that xorg is right and nvidia-settings is wrong (it reports 60).

  • Poor display refresh rate during playback

    When I say "display refresh rate" I'm talking about the various toolbars,  level meter and the clock.  I'm not talking about the time coding like in frames  of a video clip vs. minutes/seconds/decimal but how fast those toolbars visually  refresh their information.  In Cool Edit Pro 2.1 they were real-time.  Level  meter and clock would refresh at the max speed of 61 frames per second (limited  by monitor).  However Audition refreshes at what I am guessing is around 12-15  FPS.  The level meter is like watching stop motion animation and the clock skips  along by fractions of a second instead of a smooth continuous spin.  That rate  makes the whole program appear sluggish and the level meter bars do not peak,  just the resulting tic mark appears.  The sound is fine and uninterrupted.
    It is not a hardware issue.  This is primarily a gaming rig  (Nvidia 280 GTX, X-FI Fata1ity, Intel Quad core, 4GBs RAM, Vista 64x, etc.).  I do  audio editing as a side job.  I've used versions of Cool Edit Pro for nearly a  decade on many machines including this one and I want to upgrade to a  multi-core/multi-thread version to make editing faster.  Is there a setting  somewhere to set faster display refresh rates?

    KougarLOB wrote:
    Is there a setting  somewhere to set faster display refresh rates?
    I don't think so. That would be the setting that replaces any form of Vista with XP, I suspect, and M$ thoughtlessly didn't add that... but you could try turning off every single service that isn't needed, and try unplugging any form of networking connection - the polling these do can screw the response of your entire system. That's why dedicated DAWs are built - to get around all of the throttling that your average or gaming PC does. Look for an app like EndItAll, and run it before processing audio. No, I don't know why it happens, but there have been problems with video displays almost forever with CEP/Audition - simply because as an app, it doesn't prioritise video.

Maybe you are looking for

  • How to link SAP Application to Digital Signature

    Dear all, As per the sap note 593041,594010 and 827417 we have done the config setting and executed program DSIG_BOOKING_EX in tcode DSAL we are getting the message "Signature process was successfully completed by user" please suggest us how to link

  • Certification of Oracle Identity Manager 9.1.0.1

    Hi, My query is: The Oracle Identity Manager version 9.1.0.1 is supported for: 1. Oracle WebLogic Server 11g (10.3.5) without Cluster ...? 2. Oracle Database 11g R2 (11.2.0.1) without RAC ...? 3. The latest versions of JRockit JDK and ...? thanks

  • ITunes Update fails.  I have to uninstall and reinstall every time.  Why?

    Hi guys, Ever since ITunes 11 started, the auto updates fail on install for iTunes.  I finally uninstalled iTunes and reinstalled using the updated version, and that worked.  Since then I've had the same failure and had to do the same uninstall proce

  • System Prefs crashes on using the Update "Check Now"

    Hi, My System Preferences crashes the moment I ask the Software Update to "Check Now." Could this be a capacity issue. I have only 1.6 GB left on my hard disk. I'm also having issues with printing crashes from all Mac applications, but then not InDes

  • Report MRBR

    Hi all, I could run Payment run (F110) for the invoices which are blocked and sitting in MRBR report. Technically if an Invoice is blocked then payment should not be made, but system is allowing me to run the payment without any error. We are working