Re: [Mesa-dev] [PATCH 2/4] mesa: add support for GL_EXT_polygon_offset_clamp

2015-01-02 Thread Ilia Mirkin
On Thu, Jan 1, 2015 at 4:58 AM, Ilia Mirkin wrote: > On Thu, Jan 1, 2015 at 4:44 AM, Kenneth Graunke wrote: >> On Wednesday, December 31, 2014 02:38:12 AM Ilia Mirkin wrote: >>> Nothing enables the extension yet, but the values are now available. >>> The spec calls for it to only be exposed for G

Re: [Mesa-dev] [PATCH 2/4] mesa: add support for GL_EXT_polygon_offset_clamp

2015-01-01 Thread Ilia Mirkin
On Thu, Jan 1, 2015 at 4:44 AM, Kenneth Graunke wrote: > On Wednesday, December 31, 2014 02:38:12 AM Ilia Mirkin wrote: >> Nothing enables the extension yet, but the values are now available. >> The spec calls for it to only be exposed for GL 3.3+, which is core-only >> in mesa. Restrict it as suc

Re: [Mesa-dev] [PATCH 2/4] mesa: add support for GL_EXT_polygon_offset_clamp

2015-01-01 Thread Kenneth Graunke
On Wednesday, December 31, 2014 02:38:12 AM Ilia Mirkin wrote: > Nothing enables the extension yet, but the values are now available. > The spec calls for it to only be exposed for GL 3.3+, which is core-only > in mesa. Restrict it as such so that drivers enabling the extension > don't end up accid

[Mesa-dev] [PATCH 2/4] mesa: add support for GL_EXT_polygon_offset_clamp

2014-12-30 Thread Ilia Mirkin
Nothing enables the extension yet, but the values are now available. The spec calls for it to only be exposed for GL 3.3+, which is core-only in mesa. Restrict it as such so that drivers enabling the extension don't end up accidentally exposing the function in compat contexts. Signed-off-by: Ilia