You are not logged in.

#1 2008-02-08 03:14:09

moljac024
Member
From: Serbia
Registered: 2008-01-29
Posts: 2,676

very low video performance

Hello everyone. I have an intel gma 950 video card and I think it's not performing as it should.

From what I've read here at the forums, this card should be getting ~1200 FPS in glxgears (a couple of owners of this same card reported that). Mine is getting about ~750. 

I really don't know how to tweak my xorg.conf anymore so please help me. Maybe the owners of said video card could let me see their xorg.conf ?

Here's mine:

Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
    Option "AIGLX" "true"
EndSection

Section "Files"
    RgbPath      "/usr/share/X11/rgb"
    ModulePath   "/usr/lib/xorg/modules"
    FontPath     "/usr/share/fonts/misc"
    FontPath     "/usr/share/fonts/100dpi:unscaled"
    FontPath     "/usr/share/fonts/75dpi:unscaled"
    FontPath     "/usr/share/fonts/TTF"
    FontPath     "/usr/share/fonts/Type1"
EndSection

Section "Module"
    Load  "glx"
    #Load  "GLcore"
    Load  "dri"
    Load  "dbe"
    Load  "extmod"
    Load  "xtrap"
    Load  "record"
    Load  "freetype"
EndSection

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
EndSection

Section "InputDevice"
    Identifier  "Mouse0"
    Driver      "mouse"
    Option        "Protocol" "auto"
    Option        "Device" "/dev/input/mice"
    Option        "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
    #DisplaySize      330   210    # mm
    Identifier   "Monitor0"
    VendorName   "CMO"
    ModelName    "1526"
    HorizSync    31.5 - 70
    VertRefresh  60
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     "NoAccel"                # [<bool>]
        #Option     "SWcursor"               # [<bool>]
        #Option     "ColorKey"               # <i>
        #Option     "CacheLines"             # <i>
        #Option     "Dac6Bit"                # [<bool>]
        #Option     "DRI"                    # [<bool>]
        #Option     "NoDDC"                  # [<bool>]
        #Option     "ShowCache"              # [<bool>]
        #Option     "XvMCSurfaces"           # <i>
        #Option     "PageFlip"               # [<bool>]
        Option "NoAccel" "false"
        #Option "AllowGLXWithComposite" "true"
        Option "XAANoOffscreenPixmaps" "true"
          Option "DRI" "true"
          #Option "DDC" "true"
        #Option "XVideo" "true"
          #Option "AccelMethod" "EXA"
          Option "AccelMethod" "XAA"
          Option "TripleBuffer" "True"
          #Option "Legacy3D" "false"
    Identifier  "Card0"
    Driver      "intel"
    VendorName  "Intel Corporation"
    BoardName   "Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller"
    BusID       "PCI:0:2:0"
EndSection

 Section "DRI"
       Group 0
       Mode 0666
 EndSection

Section "Screen"
    Identifier "Screen0"
    Device     "Card0"
    Monitor    "Monitor0"
    DefaultDepth 24
    SubSection "Display"
        Viewport   0 0
        Depth     1
        Modes "1280x800" "1024x768" "800x600"
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     4
        Modes "1280x800" "1024x768" "800x600"
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     8
        Modes "1280x800" "1024x768" "800x600"
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     15
        Modes "1280x800" "1024x768" "800x600"
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     16
        Modes "1280x800" "1024x768" "800x600"
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     24
        Modes "1280x800" "1024x768" "800x600"
    EndSubSection
EndSection


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

The day Microsoft makes a product that doesn't suck, is the day they make a vacuum cleaner.
--------------------------------------------------------------------------------------------------------------
But if they tell you that I've lost my mind, maybe it's not gone just a little hard to find...

Offline

#2 2008-02-08 06:12:30

venox
Member
From: Curitiba, Brazil
Registered: 2003-08-23
Posts: 137
Website

Re: very low video performance

glxgears isn't a benchmarking tool, actually. Try running:

glxinfo | grep direct

If that returns:

direct rendering: Yes

Then you should be fine.

Maybe you can get some more FPS on glxgears by disabling TripleBuffer or the Composite extension, but I'm not really sure about that. Also, you can shrink the window, that should give you extra performance. big_smile

Last edited by venox (2008-02-08 06:16:48)

Offline

#3 2008-02-08 10:28:39

moljac024
Member
From: Serbia
Registered: 2008-01-29
Posts: 2,676

Re: very low video performance

Hmm, triple buffer doesn't seem to make a difference because enabling it was the last thing I tried, but no matter what I do, my FPS stays at ~750.....isn't that strange ? I know I've seen several posts here from Intel gma 950 owners that they get around ~1200 FPS.....

Although,

glxinfo | grep direct

does return

direct rendering: Yes

.

Thanks for the response anyway....

EDIT: Just tried disabling triple buffer and the composite extension, and glxgears still returns the same result! I just don't get it sad

Last edited by moljac024 (2008-02-08 10:33:36)


The day Microsoft makes a product that doesn't suck, is the day they make a vacuum cleaner.
--------------------------------------------------------------------------------------------------------------
But if they tell you that I've lost my mind, maybe it's not gone just a little hard to find...

Offline

#4 2008-02-08 16:46:29

venox
Member
From: Curitiba, Brazil
Registered: 2003-08-23
Posts: 137
Website

Re: very low video performance

Really, glxgears is not a benchmarking tool. However, it can be used to verify that your hardware acceleration support is working correctly (and it seems that yours is working).
And probably I was wrong about the trible buffer and composite extension. I don't know if there are any flags (or something) that can improve your performance on your video card.

If you really want to benchmark, you should try quake3's time demo or something else.

Offline

#5 2008-02-08 21:47:32

moljac024
Member
From: Serbia
Registered: 2008-01-29
Posts: 2,676

Re: very low video performance

Ok, here's some benchmarking: If I have xcompmgr running some applications (namely video players) crash with a "BadAlloc (not enough resources)" error..... is that supposed to happen ? Isn't xcompmgr lightweight ?


The day Microsoft makes a product that doesn't suck, is the day they make a vacuum cleaner.
--------------------------------------------------------------------------------------------------------------
But if they tell you that I've lost my mind, maybe it's not gone just a little hard to find...

Offline

#6 2008-02-09 07:06:53

shastry
Member
From: Bangalore, India
Registered: 2004-08-24
Posts: 44
Website

Re: very low video performance

945gma here.

I've noticed little sluggish 2d performance (ex: moving windows on the screen, switching tabs in konversation, etc) after upgrading to new mesa (7.0.3rc1),libgl,xorg-server,xf86-video-intel.
quake3 works fine though.

Could this be related to your experience?

PS: I get 800+ in glxgears

Offline

#7 2008-02-09 10:24:14

moljac024
Member
From: Serbia
Registered: 2008-01-29
Posts: 2,676

Re: very low video performance

I always keep my packages up to date. The funny thing is this - I have switched the driver from "intel" to "i810" and I so far have noticed absolutely no difference whatsoever. It's not slower nor faster it's the SAME. How do you explain that ? Now don't go telling me "intel" isn't supposed to perform better than the discontinued "i810"....


The day Microsoft makes a product that doesn't suck, is the day they make a vacuum cleaner.
--------------------------------------------------------------------------------------------------------------
But if they tell you that I've lost my mind, maybe it's not gone just a little hard to find...

Offline

#8 2008-02-09 13:49:47

Misfit138
Misfit Emeritus
From: USA
Registered: 2006-11-27
Posts: 4,189

Re: very low video performance

moljac024 wrote:

I always keep my packages up to date. The funny thing is this - I have switched the driver from "intel" to "i810" and I so far have noticed absolutely no difference whatsoever. It's not slower nor faster it's the SAME. How do you explain that ? Now don't go telling me "intel" isn't supposed to perform better than the discontinued "i810"....

As far as I know, 'intel' simply picks up where 'i810' left off, since i810 is no longer maintained..

Offline

Board footer

Powered by FluxBB