Re: [Mesa-dev] [Patch v2] Mesa: Add support for GL_OES_texture_*float* extensions.

2014-12-02 Thread Ian Romanick
On 11/27/2014 10:56 AM, Kalyan Kondapally wrote: > This patch adds support for following GLES2 Texture Float extensions: > 1)GL_OES_texture_float, > 2)GL_OES_texture_half_float, > 3)GL_OES_texture_float_linear, > 4)GL_OES_texture_half_float_linear. > > Support for these extensions need to be expli

Re: [Mesa-dev] [Patch v2] Mesa: Add support for GL_OES_texture_*float* extensions.

2014-12-01 Thread kalyan kondapally
>>I think this would be nicer as: >> if (ctx->API == API_OPENGLES2) { >> ctx->Extensions.OES_texture_fl >> The indentation of the new lines there looks inconsistent. I sent v3 which already has the fixes. On Mon, Dec 1, 2014 at 7:34 AM, Brian Paul wrote: > Thanks for the updates. A fe

Re: [Mesa-dev] [Patch v2] Mesa: Add support for GL_OES_texture_*float* extensions.

2014-12-01 Thread Brian Paul
Thanks for the updates. A few more nitpicks... On 11/27/2014 11:56 AM, Kalyan Kondapally wrote: This patch adds support for following GLES2 Texture Float extensions: 1)GL_OES_texture_float, 2)GL_OES_texture_half_float, 3)GL_OES_texture_float_linear, 4)GL_OES_texture_half_float_linear. Support

Re: [Mesa-dev] [Patch v2] Mesa: Add support for GL_OES_texture_*float* extensions.

2014-11-27 Thread kalyan kondapally
>>Any driver that can support ARB_texture_float should also be able to >>support these extensions, so I think you can reuse the ARB_texture_float >>enable flag here. As per discussion here, http://lists.freedesktop.org/archives/mesa-dev/2014-May/059679.html, drivers should be able to advertise sup

Re: [Mesa-dev] [Patch v2] Mesa: Add support for GL_OES_texture_*float* extensions.

2014-11-27 Thread Fredrik Höglund
On Thursday 27 November 2014, Kalyan Kondapally wrote: > This patch adds support for following GLES2 Texture Float extensions: > 1)GL_OES_texture_float, > 2)GL_OES_texture_half_float, > 3)GL_OES_texture_float_linear, > 4)GL_OES_texture_half_float_linear. > > Support for these extensions need to be

Re: [Mesa-dev] [Patch v2] Mesa: Add support for GL_OES_texture_*float* extensions.

2014-11-27 Thread Matt Turner
On Thu, Nov 27, 2014 at 10:56 AM, Kalyan Kondapally wrote: > This patch adds support for following GLES2 Texture Float extensions: > 1)GL_OES_texture_float, > 2)GL_OES_texture_half_float, > 3)GL_OES_texture_float_linear, > 4)GL_OES_texture_half_float_linear. > > Support for these extensions need t

[Mesa-dev] [Patch v2] Mesa: Add support for GL_OES_texture_*float* extensions.

2014-11-27 Thread Kalyan Kondapally
This patch adds support for following GLES2 Texture Float extensions: 1)GL_OES_texture_float, 2)GL_OES_texture_half_float, 3)GL_OES_texture_float_linear, 4)GL_OES_texture_half_float_linear. Support for these extensions need to be explicitly enabled per driver and this patch enables support for i96