LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 07-23-2005, 10:50 PM   #16
slackwarefan
Member
 
Registered: Oct 2003
Location: Florida
Distribution: Slackware
Posts: 273

Original Poster
Rep: Reputation: 30

I get about 120 to 130 FPS. How would recompiling with agpgart as a module help?
 
Old 08-10-2005, 01:35 AM   #17
nymusicman
Member
 
Registered: Jun 2004
Location: Aurora, IL
Distribution: Slackware Current
Posts: 162

Rep: Reputation: 30
I know this is a little late in this thread but I would also like to know his answer. However I did get my glxgears from 120 to 230 by running slackware's xorgsetup tool. you could try that.

However that still does not help the DRI situation. I was wondering however, if you might help me with this dmesg |grep drm output. I got something a little different.

[drm] AGP 0.99 Aperture @ 0xf0000000 64MB
[drm] Initialized radeon 1.7.0 20020828 on minor 0
[drm:radeon_ati_pcigart_init] *ERROR* PCI device unknown!
[drm:radeon_do_init_cp] *ERROR* failed to init PCI GART!
[drm:radeon_ati_pcigart_init] *ERROR* PCI device unknown!
[drm:radeon_do_init_cp] *ERROR* failed to init PCI GART!
 
Old 08-10-2005, 02:22 AM   #18
BroX
Member
 
Registered: Oct 2003
Location: Sweden
Distribution: Slackware64-current, SlackwareARM-15.0
Posts: 833

Rep: Reputation: 90
Re: Radeon 7000 no DRI

Quote:
Originally posted by slackwarefan
My video card continues to plague me. Despite the countless tutorials and troubleshooting guides I've read through over and over again, I can't get direct rendering to work. I look through the logs and it says "Acceleration: enabled" "Direct rendering: Enabled". For some reason though, when I'm actually using X, Direct rendering is disabled.
Check if you're actually using libGL and libGLU from xorg. You could for example run ldd on glxinfo:
Code:
bash-3.00$ ldd `which glxinfo` 
        linux-gate.so.1 =>  (0xffffe000)
        libGLU.so.1 => /usr/X11R6/lib/libGLU.so.1 (0xb7f4f000)
        libGL.so.1 => /usr/X11R6/lib/libGL.so.1 (0xb7ee3000)
        libXext.so.6 => /usr/X11R6/lib/libXext.so.6 (0xb7ed5000)
        libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0xb7e0b000)
        libpthread.so.0 => /lib/tls/libpthread.so.0 (0xb7df9000)
        libm.so.6 => /lib/tls/libm.so.6 (0xb7dd6000)
        libc.so.6 => /lib/tls/libc.so.6 (0xb7cb9000)
        libstdc++.so.5 => /usr/lib/libstdc++.so.5 (0xb7c01000)
        libgcc_s.so.1 => /usr/lib/libgcc_s.so.1 (0xb7bf8000)
        libXxf86vm.so.1 => /usr/X11R6/lib/libXxf86vm.so.1 (0xb7bf3000)
        libdl.so.2 => /lib/tls/libdl.so.2 (0xb7bef000)
        /lib/ld-linux.so.2 (0xb7fd7000)
bash-3.00$
If libGL and/or libGLU are run from for example /usr/local/lib (as was the case for me) or any directory other then /X11R6/lib/ then get those files out of the way (make backups so you can always restore!) and check the above test again.

Hope this will help.

FYI: I have a Radeon 7500 M7 Mobility and get 1350 fps with glxgears (200 fps with glxgears full screen). Here is my relevant part of /etc/X11/xorg.conf:
Code:
Section "Device"
        Identifier  "VESA Framebuffer"
        Driver      "radeon"
        Option  "AGPMode"               "4"
        Option  "AGPSize"               "32"
        Option  "AGPFastWrite"          "on"
        Option  "RenderAccel"           "on"
        Option  "EnablePageFlip"        "on"
EndSection

Section "DRI"
        Mode    0666
EndSection
Cheers, Leon.
 
Old 08-10-2005, 08:42 PM   #19
slackwarefan
Member
 
Registered: Oct 2003
Location: Florida
Distribution: Slackware
Posts: 273

Original Poster
Rep: Reputation: 30
I set exactly the same settings in my xorg.conf, and yet I still am without Direct Rendering. In my xorg.conf file it still says "Direct Rendering: Enabled", yet it's still not enabled when I try to make use of it.

What could be causing this?

-Thanks
 
Old 08-10-2005, 11:31 PM   #20
maginotjr
Member
 
Registered: Aug 2004
Location: BR - Floripa
Distribution: Ubuntu 9.10 - 2.6.x.x
Posts: 661

Rep: Reputation: 35
well... I have a similar problem ...

and Im realy hoping someone give some solution... I have done all the things here and what I found in the net but it seens like a problem with no solution... :/
I hate be damned with notebook graphics card... why this peace of s&%$ dont come with a better supported board??

;///
 
Old 08-10-2005, 11:32 PM   #21
maginotjr
Member
 
Registered: Aug 2004
Location: BR - Floripa
Distribution: Ubuntu 9.10 - 2.6.x.x
Posts: 661

Rep: Reputation: 35
http://www.linuxquestions.org/questi...37#post1793537

have forgot... this is my post.
 
Old 08-11-2005, 01:07 AM   #22
BroX
Member
 
Registered: Oct 2003
Location: Sweden
Distribution: Slackware64-current, SlackwareARM-15.0
Posts: 833

Rep: Reputation: 90
Quote:
Originally posted by slackwarefan
I set exactly the same settings in my xorg.conf, and yet I still am without Direct Rendering. In my xorg.conf file it still says "Direct Rendering: Enabled", yet it's still not enabled when I try to make use of it.

What could be causing this?

-Thanks
Did you check the location of libGL.so.1 and libGLU.so.1?
 
Old 08-11-2005, 09:11 PM   #23
slackwarefan
Member
 
Registered: Oct 2003
Location: Florida
Distribution: Slackware
Posts: 273

Original Poster
Rep: Reputation: 30
Yes, both are in the correct loactions, as per your post.
 
Old 08-12-2005, 02:57 PM   #24
JDaniels
LQ Newbie
 
Registered: Jun 2004
Location: Salt Lake City, UT
Distribution: Slackware
Posts: 24

Rep: Reputation: Disabled
Quote:
Originally posted by slackwarefan
When I run glxinfo it says that direct rendering is disabled. This is how I know that direct rendering is disabled even though the X logs say it's on.

I'm using the DRI driver to try to run the card because I can't get the new ati drivers to work. I downloaded the install program from ati's website, but instead of presenting me with a gui allowing me to install drivers, the program shows nothing and on the command prompt, say
"verifying integrity"
"Uncompressing"
{uncompressing}
"Deleting temp folder"

It looks like it tried to start but just didn't and deleted the folder containing the things it was going to install.
I had this same problem. I had read somewhere (can't seem to find it now) that you need to run X.org 6.8.2. So after updating X, the installer ran fine.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Cant get DRI working with ATI Radeon 7000 and Gentoo Linux kofrad Linux - Hardware 21 04-21-2006 01:10 PM
RHEL 4 WS and DRI Radeon VE/7000 chardingLLNL Red Hat 1 07-22-2005 03:27 PM
Can't enable DRI Radeon 7000 AGP slackwarefan Slackware 22 04-05-2005 04:23 PM
Mobility Radeon 7000, X.org 6.7.0 and DRI fader Slackware 1 01-31-2005 03:47 PM
hello a new in linux and i got a big problem with my ati radeon 7000/radeon ve card AKAKAK Linux - Hardware 0 01-19-2005 09:39 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

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

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration