LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Hardware (https://www.linuxquestions.org/questions/linux-hardware-18/)
-   -   GeForce 2 -about 300 FPS in glxgears :| (https://www.linuxquestions.org/questions/linux-hardware-18/geforce-2-about-300-fps-in-glxgears-%7C-233064/)

gogiel 09-20-2004 03:31 PM

GeForce 2 -about 300 FPS in glxgears :|
 
In glxgears i'm getting about 280-350 FPS :(.
Here's my xorg.conf:


Code:

Section "Module"

# This loads the DBE extension module.

    Load        "dbe" 

# 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        "type1"
    Load        "freetype"
    Load        "speedo"

    Load      "glx"

EndSection


Section "Files"
    FontPath "/usr/X11R6/lib/X11/fonts/100dpi_pl"
    FontPath "/usr/X11R6/lib/X11/fonts/75dpi_pl"
    FontPath "/usr/X11R6/lib/X11/fonts/misc_pl"




    RgbPath "/usr/X11R6/lib/X11/rgb"

    FontPath  "/usr/X11R6/lib/X11/fonts/local/"
    FontPath  "/usr/X11R6/lib/X11/fonts/misc/"
    FontPath  "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
    FontPath  "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
    FontPath  "/usr/X11R6/lib/X11/fonts/Type1/"
    FontPath  "/usr/X11R6/lib/X11/fonts/CID/"
    FontPath  "/usr/X11R6/lib/X11/fonts/Speedo/"
    FontPath  "/usr/X11R6/lib/X11/fonts/75dpi/"
    FontPath  "/usr/X11R6/lib/X11/fonts/100dpi/"
    FontPath  "/usr/X11R6/lib/X11/fonts/cyrillic/"

# ModulePath can be used to set a search path for the X server modules.
# The default path is shown here.

#    ModulePath "/usr/X11R6/lib/modules"
EndSection

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    "DontZoom"

# 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"



    Option      "blank time"    "2" 
    Option      "standby time"  "5"
    Option      "suspend time"  "10"
    Option      "off time"      "15"

# On some platform the server needs to estimate the sizes of PCI
# memory and pio ranges. This is done by assuming that PCI ranges
# don't overlap. Some broken BIOSes tend to set ranges of inactive
# devices wrong. Here one can adjust how aggressive the assumptions
# should be. Default is 0.

# Option  "EstimateSizesAggresively" "0"

EndSection


Section "InputDevice"

Option "XkbRules" "xorg"
Option "XkbModel" "pc104"
Option "XkbLayout" "pl"


    Identifier "Keyboard1"
    Driver "Keyboard"

EndSection



Section "InputDevice"
 Identifier  "Mouse1"
 Driver      "mouse"
 Option    "Protocol" "IMPS/2"
 Option    "Device" "/dev/mouse"
 Option      "ZAxisMapping" "4 5"
 Option      "Buttons" "5"
 Option    "Emulate3Buttons" "no"
 Option      "SendCoreEvents" "true"
EndSection



Section "Monitor"

    Option "DPMS"
    Identifier  "My Monitor"
    HorizSync  30-85
    VertRefresh 50-160

EndSection


Section "Device"
 Identifier  "GeForce"
 Driver      "nvidia"
 Option  "NoLogo"  "true"
 Option      "NvAgp"  "1"
 Option      "AGPMode"  "4"
 Option      "AGPFastWrite" "true"
 Option "RenderAccel" "1"
 Option      "EnableDepthMoves"      "true"
 Option      "EnablePageFlip"        "true"
 Option "DPMS"
# BusID  "PCI:1:0:0"
   
EndSection


Section "Screen"
    Identifier  "Screen 1"
    Device      "GeForce"
    Monitor    "My Monitor"

#  DefaultDepth 8
#  DefaultDepth 16
  DefaultDepth 24
#  DefaultDepth 32


    Subsection "Display"
        Depth      8
        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

Section "ServerLayout"

    Identifier  "Simple Layout"
    Screen "Screen 1"
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"

EndSection

And some other stuff:

Code:

$ cat /proc/driver/nvidia/agp/status
Status:          Enabled
Driver:          NVIDIA
AGP Rate:        4x
Fast Writes:    Disabled
SBA:            Disabled

$ cat /proc/driver/nvidia/cards/0
Model:          GeForce2 MX/MX 400
IRQ:            5
Video BIOS:      03.11.01.48.00
Card Type:      AGP



All times are GMT -5. The time now is 08:41 PM.