Re: vertex programs patch for r200 with configuration options -- corrected

2004-09-08 Thread Dave Airlie
I know that when I use glGetString(GL_EXTENSIONS) I check for the way they are normally done. If it should be in all caps, can someone give a logical reason for it? Maybe the wrong patch was applied? doh .. it should be okay now ... Dav. -- David Airlie, Software Engineer

Re: vertex programs patch for r200 with configuration options

2004-09-07 Thread Dave Airlie
I've applied this ... Dave. On Mon, 6 Sep 2004, Philipp Klaus Krause wrote: This patch enables GL_ARB_vertex_program and GL_NV_vertex_program support in the r200 driver. Both extensions can be enabled via options, GL_ARB_vertex_program is on by default, GL_NV_vertex_program off. Option

Configuration design (was Re: vertex programs patch for r200 with configuration options -- corrected)

2004-09-07 Thread Felix Kühling
On Mon, 06 Sep 2004 23:09:34 +0100 Alan Cox [EMAIL PROTECTED] wrote: On Llu, 2004-09-06 at 22:50, Felix Kühling wrote: We want the description strings in all available languages to be compiled into the 3D drivers. All these macros result in a small XML-document which is looked up via

Re: vertex programs patch for r200 with configuration options -- corrected

2004-09-07 Thread Michael Mazack
r200_context.c shows the following: if(driQueryOptionb(rmesa-optionCache, arb_vertex_program)) _mesa_enable_extension( ctx, GL_ARB_vertex_program); if(driQueryOptionb(rmesa-optionCache, nv_vertex_program)) _mesa_enable_extension( ctx, GL_NV_VERTEX_PROGRAM); Should the nvidia extension be in

Re: vertex programs patch for r200 with configuration options -- corrected

2004-09-07 Thread Philipp Klaus Krause
Michael Mazack schrieb: r200_context.c shows the following: if(driQueryOptionb(rmesa-optionCache, arb_vertex_program)) _mesa_enable_extension( ctx, GL_ARB_vertex_program); if(driQueryOptionb(rmesa-optionCache, nv_vertex_program)) _mesa_enable_extension( ctx, GL_NV_VERTEX_PROGRAM); Should the

vertex programs patch for r200 with configuration options

2004-09-06 Thread Philipp Klaus Krause
This patch enables GL_ARB_vertex_program and GL_NV_vertex_program support in the r200 driver. Both extensions can be enabled via options, GL_ARB_vertex_program is on by default, GL_NV_vertex_program off. Option descriptions are in german, english and french. Apply with cat r200_vp.patch | patch

vertex programs patch for r200 with configuration options -- corrected

2004-09-06 Thread Philipp Klaus Krause
'Did some more testing and found bugs. Here is the corrected patch. Philipp diff --unified -r dri.bak/common/xmlpool.h dri/common/xmlpool.h --- dri.bak/common/xmlpool.h 2004-05-08 12:08:21 +0200 +++ dri/common/xmlpool.h 2004-09-06 20:39:06 +0200 @@ -273,4 +273,25 @@

Re: vertex programs patch for r200 with configuration options -- corrected

2004-09-06 Thread Alan Cox
On Llu, 2004-09-06 at 21:19, Philipp Klaus Krause wrote: 'Did some more testing and found bugs. Here is the corrected patch. Not having looked at this before - is there a reason for DRI_CONF_DESC not using standard internationalisation functions.

Re: vertex programs patch for r200 with configuration options -- corrected

2004-09-06 Thread Felix Kühling
On Mon, 06 Sep 2004 21:21:00 +0100 Alan Cox [EMAIL PROTECTED] wrote: On Llu, 2004-09-06 at 21:19, Philipp Klaus Krause wrote: 'Did some more testing and found bugs. Here is the corrected patch. Not having looked at this before - is there a reason for DRI_CONF_DESC not using standard

Re: vertex programs patch for r200 with configuration options -- corrected

2004-09-06 Thread Dieter Ntzel
Am Montag, 6. September 2004 22:19 schrieb Philipp Klaus Krause: 'Did some more testing and found bugs. Here is the corrected patch. Works fine. Out for vacation, now. Dieter --- This SF.Net email is sponsored by BEA Weblogic Workshop FREE

Re: vertex programs patch for r200 with configuration options -- corrected

2004-09-06 Thread Dave Airlie
Okay if nobody pops up with a problem I'll check it in later on today... Dave. On Mon, 6 Sep 2004, Philipp Klaus Krause wrote: 'Did some more testing and found bugs. Here is the corrected patch. Philipp -- David Airlie, Software Engineer http://www.skynet.ie/~airlied / airlied at

Re: vertex programs patch for r200 with configuration options -- corrected

2004-09-06 Thread Alan Cox
On Llu, 2004-09-06 at 22:50, Felix Khling wrote: We want the description strings in all available languages to be compiled into the 3D drivers. All these macros result in a small XML-document which is looked up via dlopen/dlsym by the configuration tool (or xdriinfo as a helper for script