You are not logged in.
Hello,
I have installed cedega but the test says I do not have direct rendering. I confirm this:
[karag@karag ~]$ glxinfo |grep direct
direct rendering: NoMy card is nvidia ti4400 and I use all current packages - nvidia 1.0.8774-1 and xorg 11R7.0-1. I think it must be a problem in my xorg.conf, here
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 "type1"
# Load "speedo"
Load "freetype"
# Load "xtt"
# This loads the GLX module
Load "glx"
# This loads the DRI module
Load "dri"
Load "extmod"
EndSectionSection "Device"
Identifier "nvidia4400"
Driver "nvidia"
# Option "NvAGP" "1"
Option "RenderAccel" "true"
# Option "RENDER" "Enable"
# Option "EnablePageFlip""true"
Option "NoLogo" "true"
Option "CursorShadow" "true"
Screen 0
# BusID "PCI:01:05:0"
VideoRam 131072
# Insert Clocks lines here if appropriate
EndSectionSection "DRI"
Mode 0666
EndSectionany help to activate direct rendering is appreciated, thankyou.
karag
Offline
Check /var/log/Xorg.0.log for anything suspicious.
I am a gated community.
Offline
It's an nvidia card- so you should remove/ comment out all DRI related entries from xorg.conf
nvidia uses its own direct rendering subsystem.
See the WIKI
Microshaft delenda est
Offline
thanks for your replies.
@stonecrest. I cannot find anything in the log related to direct rendering, but then I'm unsure what to look for ![]()
@scarecrow. I have removed the dri module and end section from xorg.conf but still direct rendering says 'no'. Is there any other settings I need to make? I also confirm that user is member of video group.
thanks!
Offline
Direct rendering works here. My modules section:
Section "Module"
Load "i2c"
Load "bitmap"
Load "ddc"
Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "type1"
Load "vbe"
EndSectionOffline
Nasty performance after installing new nvidia-driver
If you experience very slow fps rate in compare with older driver first check if You have Direct Rendering turned on. You can do it by:
glxinfo | grep direct
If You get: direct rendering: No then that`s your problem. Next check if You have the same versions of glx for the client and server by this:
glxinfo | egrep "glx (vendor|version)"
And if You see different vendors or versions for the client and server run this:
VER=1.0.8774
ln -fs /usr/lib/libGL.so.$VER /usr/X11R6/lib/libGL.so
ln -fs /usr/lib/libGL.so.$VER /usr/X11R6/lib/libGL.so.1
ln -fs /usr/lib/libGL.so.$VER /usr/lib/libGL.so.1.2Where $VER is the version of nvidia package, that you`re using. You can check it by nvidia-settings
That`s all. Now restart your Xserver and You should have normal acceleration
that's from the wiki, worked like a charm here. ![]()
/me hugs wiki
Offline
thanks paranoos,
my vendor's were not the same, so I needed to run those commands.
direct rendering works now!
Offline