• Home
  • Reviews
  • Articles
  • News
  • Tools
  • GamingHeaven
  • Forums
  • Network
 

Go Back   DriverHeaven.net > Forums > Graphics Cards > ATI Radeon Drivers > Linux Radeon Display Drivers

Notices

Reply
 
LinkBack Thread Tools
Old Jan 18, 2006, 05:29 PM   #1
Freedom is a feature.
 
RIV@NVX's Avatar
 
Join Date: Jul 2002
Location: Croatia, Rijeka
Posts: 4,402
RIV@NVX is on a distinguished road
System Specs

New drivers - 8.21.7

I had seen them out, but I haven't tried them yet. Well, I kinda don't have a machine where I could, because it's all Xorg 7.0 here, and ATI still doesn't support anything above 6.8.

NEW FEATURES:
(1) ATI Linux Driver Installer now 50% smaller. <-- ME LOVES THIS ONE!
(2) OpenGL 2.0 Support.
ISSUES RESOLVED:
(1) mode2 option in aticonfig now supported as documented
(2) Starting X server when the virtual desktop size is set higher than the largest display mode available for the display device no longer results in fatal server error.

BTW, has anyone got fglrx (any version) to work with 6.9 or 7.0?
RIV@NVX is offline   Reply With Quote
Old Jan 20, 2006, 08:07 AM   #2
DriverHeaven Newbie
 
Join Date: Feb 2005
Posts: 5
finite is on a distinguished road

No huge changes in this release, but nice that they're at least giving us some bugfixes.

I'm using the latest drivers on X.Org 6.9. Didn't have any problems getting that to work. I used the installer (not the RPMs) and it simply had the option "Install Driver 8.21.7 on X.Org 6.9.x", I clicked continue and it worked. I use slackware, and my X.org install is from the official slackware packages.

If it doesn't work immediately after installation, try a reboot or just unload the fglrx module ("rmmod fglrx", or "modprobe -r fglrx" as root). It should then load the new version of the module when you next start an X server.

If that doesn't work... no idea. :/
finite is offline   Reply With Quote
Old Jan 20, 2006, 11:18 AM   #3
Freedom is a feature.
 
RIV@NVX's Avatar
 
Join Date: Jul 2002
Location: Croatia, Rijeka
Posts: 4,402
RIV@NVX is on a distinguished road
System Specs

OK, I will give it a shot on my backup HDD's FC5t2 installation. It's X.org 7.0.0 RC4, but I hope it will work - it works with 6.9, and they are the same in terms of features.
RIV@NVX is offline   Reply With Quote
Old Jan 30, 2006, 05:46 AM   #4
DriverHeaven Senior Member
 
Kombatant's Avatar
 
Join Date: Apr 2003
Location: Athens, Hellas
Posts: 804
Kombatant is a glorious beacon of lightKombatant is a glorious beacon of lightKombatant is a glorious beacon of lightKombatant is a glorious beacon of lightKombatant is a glorious beacon of lightKombatant is a glorious beacon of light

I am a bit disappointed tbh with the continuous lack of X1000 series support - the cards are out since October and Linux users still can't use them
Kombatant is offline   Reply With Quote
Old Feb 3, 2006, 09:15 AM   #5
DriverHeaven Newbie
 
Join Date: Nov 2005
Location: Helsinki, Finland.
Posts: 4
jamse101 is on a distinguished road

Yeah, I would like to use Linux with my X1800...
jamse101 is offline   Reply With Quote
Old Feb 3, 2006, 01:50 PM   #6
Freedom is a feature.
 
RIV@NVX's Avatar
 
Join Date: Jul 2002
Location: Croatia, Rijeka
Posts: 4,402
RIV@NVX is on a distinguished road
System Specs

That's a sad thing.

For us "older cards" owners, the situation is much better. ATI's fglrx works, and r300 is getting closer to beeing actually usable, which is great; r200 driver is even better.
RIV@NVX is offline   Reply With Quote
Old Feb 25, 2006, 03:02 PM   #7
lcs
DriverHeaven Newbie
 
Join Date: May 2005
Posts: 7
lcs is on a distinguished road

Quote:
Originally Posted by RIV@NVX
(2) OpenGL 2.0 Support.
If anyone from ATI reads this ... please apply the following patch:

Code:
--- glATI.h	 2006-02-25 20:47:28.000000000 +0100
+++ glATI.h.orig		2006-02-25 20:45:38.000000000 +0100
@@ -771,14 +771,14 @@

 typedef GLvoid	(APIENTRY *PFNGLDELETESHADERPROC)(GLuint shader);
 typedef GLboolean (APIENTRY *PFNGLISSHADERPROC)(GLuint shader);
-typedef GLvoid	(APIENTRY *PFNGLGETSHADERIVPROC)(GLuint shader, GLenum pname, GLint *params);
-typedef GLvoid	(APIENTRY *PFNGLGETSHADERINFOLOGPROC)(GLuint shader, GLsizei bufSize,
+typedef GLvoid	(APIENTRY *PFNGETSHADERIVPROC)(GLuint shader, GLenum pname, GLint *params);
+typedef GLvoid	(APIENTRY *PFNGETSHADERINFOLOGPROC)(GLuint shader, GLsizei bufSize,
													   GLsizei *length, GLchar *infoLog);

 typedef GLvoid	(APIENTRY *PFNGLDELETEPROGRAMPROC)(GLuint program);
 typedef GLboolean (APIENTRY *PFNGLISPROGRAMPROC)(GLuint program);
-typedef GLvoid	(APIENTRY *PFNGLGETPROGRAMIVPROC)(GLuint program, GLenum pname, GLint *params);
-typedef GLvoid	(APIENTRY *PFNGLGETPROGRAMINFOLOGPROC)(GLuint program, GLsizei bufSize,
+typedef GLvoid	(APIENTRY *PFNGETPROGRAMIVPROC)(GLuint program, GLenum pname, GLint *params);
+typedef GLvoid	(APIENTRY *PFNGETPROGRAMINFOLOGPROC)(GLuint program, GLsizei bufSize,
														GLsizei *length, GLchar *infoLog);

 /*
@@ -826,9 +826,9 @@
 #define GL_STENCIL_BACK_VALUE_MASK		 0x8CA4
 #define GL_STENCIL_BACK_WRITEMASK		  0x8CA5

-typedef void	  (APIENTRY *PFNGLSTENCILOPSEPARATEPROC)(GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass);
-typedef void	  (APIENTRY *PFNGLSTENCILFUNCSEPARATEPROC)(GLenum face, GLenum func, GLint ref, GLuint mask);
-typedef void	  (APIENTRY *PFNGLSTENCILMASKSEPARATEPROC)(GLenum face, GLuint mask);
+typedef void	  (APIENTRY *PFNGLSTENCILOPSEPARATE)(GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass);
+typedef void	  (APIENTRY *PFNGLSTENCILFUNCSEPARATE)(GLenum face, GLenum func, GLint ref, GLuint mask);
+typedef void	  (APIENTRY *PFNGLSTENCILMASKSEPARATE)(GLenum face, GLuint mask);

 /*
 **  BlendEquationSeparate
@@ -836,7 +836,7 @@
 #define GL_BLEND_EQUATION_RGB			  GL_BLEND_EQUATION
 #define GL_BLEND_EQUATION_ALPHA			0x883D

-typedef void	  (APIENTRY *PFNGLBLENDEQUATIONSEPARATEPROC)(GLenum modeRGB, GLenum modeAlpha);
+typedef void	  (APIENTRY *PFNBLENDEQUATIONSEPARATEPROC)(GLenum modeRGB, GLenum modeAlpha);
lcs is offline   Reply With Quote
 

 
Powered by: vBulletin
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
Artwork by Allan 'Zardon' Campbell, vBulletin implementation by Craig '5320' Humphreys based on original artwork by Ratchet.

All times are GMT -5. The time now is 01:46 AM. Copyright ©2008 HeavenMedia.net