LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   need descriptions of xorg modules (https://www.linuxquestions.org/questions/linux-software-2/need-descriptions-of-xorg-modules-388942/)

bb002 12-03-2005 04:39 PM

need descriptions of xorg modules
 
I have a eVGA nVidia 6800 Video Card and have everything setup properly, or so i think. Certain games lock up my system completely either as soon as I run the game or a few seconds after running the game. Neverwinter Nights Platinium seems to be a real stickler at the moment. I know it's not my install since I can copy it to another machine and run it just fine.

So I was wondering if someone to post descriptions to the following modules or even better show where to look. So far I can't find anything; I just keep coming up with other peoples posted xorg.conf's.

Also I'm the nVidia 7667 drivers.
Code:

Section "Module"
#        Load        "GLcore" #nVidia 7667 readme says comment out.
        Load        "i2c"
        Load        "bitmap"
        Load        "ddc"
#        Load        "dri"  #nVidia 7667 readme says comment out.
        Load        "extmod"
        Load        "freetype"
        Load        "glx"
        Load        "int10"
        Load        "type1"
        Load        "vbe"
EndSection


foo_bar_foo 12-03-2005 10:02 PM

most likely "composite" extersion is the problem
you can use either Composite or OpenGL overlays, but not both.
try
Option "AllowGLXWithComposite" "true"
and if that won't work try
Option "Composite" "false"
and/or

Code:

Section "Extensions"
    Option "Composite" "Disable"
EndSection

or
Code:

Section "Extensions"
    Option "Composite" "false"
EndSection



All times are GMT -5. The time now is 07:15 PM.