Re: [Mesa-dev] How to obtain OpenGL implementation/driver information?

2011-02-04 Thread Corbin Simpson
God, I hate flying while sick. A bigger problem is that there is no good way to divine this info without actually loading the DRI driver, unless we want to reduce Linux compatibility to the same level as Win32 by only supporting the system graphics. OTOH, there are a lot of coincidental circumstan

Re: [Mesa-dev] How to obtain OpenGL implementation/driver information?

2011-02-04 Thread Jerome Glisse
On Fri, Feb 4, 2011 at 6:50 PM, Benoit Jacob wrote: > > > - Original Message - >> On Fri, 4 Feb 2011 08:58:31 -0800 (PST), Benoit Jacob >> wrote: >> > - Original Message - >> > > On Thu, Feb 3, 2011 at 4:37 PM, Benoit Jacob >> > > wrote: >> > > > Hi, >> > > > >> > > > I'm trying

Re: [Mesa-dev] How to obtain OpenGL implementation/driver information?

2011-02-04 Thread Benoit Jacob
- Original Message - > On Fri, 4 Feb 2011 08:58:31 -0800 (PST), Benoit Jacob > wrote: > > - Original Message - > > > On Thu, Feb 3, 2011 at 4:37 PM, Benoit Jacob > > > wrote: > > > > Hi, > > > > > > > > I'm trying to see how to implement selective > > > > whitelisting/blacklisti

Re: [Mesa-dev] How to obtain OpenGL implementation/driver information?

2011-02-04 Thread Eric Anholt
On Fri, 4 Feb 2011 08:58:31 -0800 (PST), Benoit Jacob wrote: > - Original Message - > > On Thu, Feb 3, 2011 at 4:37 PM, Benoit Jacob > > wrote: > > > Hi, > > > > > > I'm trying to see how to implement selective > > > whitelisting/blacklisting of driver versions on X11 (my use case is > >

Re: [Mesa-dev] How to obtain OpenGL implementation/driver information?

2011-02-04 Thread Benoit Jacob
- Original Message - > On Thu, Feb 3, 2011 at 4:37 PM, Benoit Jacob > wrote: > > Hi, > > > > I'm trying to see how to implement selective > > whitelisting/blacklisting of driver versions on X11 (my use case is > > to whitelist drivers for Firefox). The naive approach consists in > > creati

Re: [Mesa-dev] How to obtain OpenGL implementation/driver information?

2011-02-04 Thread Jerome Glisse
On Thu, Feb 3, 2011 at 4:37 PM, Benoit Jacob wrote: > Hi, > > I'm trying to see how to implement selective whitelisting/blacklisting of > driver versions on X11 (my use case is to whitelist drivers for Firefox). The > naive approach consists in creating an OpenGL context and calling > glGetStri

[Mesa-dev] How to obtain OpenGL implementation/driver information?

2011-02-03 Thread Benoit Jacob
Hi, I'm trying to see how to implement selective whitelisting/blacklisting of driver versions on X11 (my use case is to whitelist drivers for Firefox). The naive approach consists in creating an OpenGL context and calling glGetString(), however that is not optimal for me, for these reasons: *