Re: [Mesa-dev] [RFC 16/21] mesa: Fix ARB_texture_compression_bptc functionality leaks

2015-10-22 Thread Chad Versace
On Tue 20 Oct 2015, Nanley Chery wrote: > On Tue, Oct 20, 2015 at 8:37 AM, Marek Olšák wrote: > > > NAK. I'd like this extension in compatibility contexts. The fact the > > spec requires OpenGL 3.1 was just authors' laziness. > > > > > I had thought it might be the case that

Re: [Mesa-dev] [RFC 16/21] mesa: Fix ARB_texture_compression_bptc functionality leaks

2015-10-20 Thread Marek Olšák
NAK. I'd like this extension in compatibility contexts. The fact the spec requires OpenGL 3.1 was just authors' laziness. Marek On Tue, Oct 20, 2015 at 12:44 AM, Nanley Chery wrote: > From: Nanley Chery > > Stop leaks into the following

Re: [Mesa-dev] [RFC 16/21] mesa: Fix ARB_texture_compression_bptc functionality leaks

2015-10-20 Thread Nanley Chery
On Tue, Oct 20, 2015 at 8:37 AM, Marek Olšák wrote: > NAK. I'd like this extension in compatibility contexts. The fact the > spec requires OpenGL 3.1 was just authors' laziness. > > I had thought it might be the case that some specs may unecessarily require a certain version,

[Mesa-dev] [RFC 16/21] mesa: Fix ARB_texture_compression_bptc functionality leaks

2015-10-19 Thread Nanley Chery
From: Nanley Chery Stop leaks into the following contexts: * GLES in _mesa_target_can_be_compressed(). * Pre-3.1 GL legacy versions in all uses. The extension spec lists OpenGL 3.1 as required, so update the extension table accordingly. Signed-off-by: Nanley