Re: [oglbase-discuss] 2nd draft: GL_EXT_get_proc_address spec

1999-09-15 Thread Brian Paul
Stephen J Baker wrote: On Sat, 11 Sep 1999, Brian Paul wrote: How do we make decisions on these things when there's no obvious, clear answer? I think we have a choice between two approaches: * Separate calls : Logically more tenable, clean. * One call : More windoze compatible.

Re: [linux-opengl-base] [oglbase-discuss] draft spec for GL_EXT_get_proc_address

1999-09-15 Thread Stephen J Baker
On Wed, 15 Sep 1999, Stephen J Baker wrote: #ifndef WINDOZE void *wglGetFuncAddress ( char *s ) { void *f ; if(!(f= glGetFuncAddress(s))) return f; if(!(f=gluGetFuncAddress(s))) return f; #ifdef X_WIN if(!(f=glXGetFuncAddress(s))) return f; #endif #ifdef MAC_OS

Re: [oglbase-discuss] GL_EXT_get_proc_address in Mesa 3.1

1999-09-15 Thread Stephen J Baker
On Sat, 11 Sep 1999, Brian Paul wrote: [cross-posting] I've implemented this extension in Mesa 3.1 and checked it into the CVS repository. I also implemented GLU_EXT_get_proc_address and GLX_EXT_get_proc_address. Only the core extension has been documented in the Mesa/docs/ directory at