Re: [Mesa-dev] [PATCH 2/4] gallium: add initial support for conservative rasterization

2018-03-23 Thread Marek Olšák
On Fri, Mar 23, 2018 at 8:54 PM, Ilia Mirkin wrote: > On Fri, Mar 23, 2018 at 8:51 PM, Marek Olšák wrote: > > diff --git a/src/gallium/include/pipe/p_state.h > > b/src/gallium/include/pipe/p_state.h > >> > >> index 4dce399f84..913a79faee 100644 > >> --- a/src/gallium/include/pipe/p_state.h > >>

Re: [Mesa-dev] [PATCH 2/4] gallium: add initial support for conservative rasterization

2018-03-23 Thread Ilia Mirkin
On Fri, Mar 23, 2018 at 8:51 PM, Marek Olšák wrote: > diff --git a/src/gallium/include/pipe/p_state.h > b/src/gallium/include/pipe/p_state.h >> >> index 4dce399f84..913a79faee 100644 >> --- a/src/gallium/include/pipe/p_state.h >> +++ b/src/gallium/include/pipe/p_state.h >> @@ -113,6 +113,7 @@ stru

Re: [Mesa-dev] [PATCH 2/4] gallium: add initial support for conservative rasterization

2018-03-23 Thread Marek Olšák
diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h > index 4dce399f84..913a79faee 100644 > --- a/src/gallium/include/pipe/p_state.h > +++ b/src/gallium/include/pipe/p_state.h > @@ -113,6 +113,7 @@ struct pipe_rasterizer_state > unsigned line_smooth:1; > un

Re: [Mesa-dev] [PATCH 2/4] gallium: add initial support for conservative rasterization

2018-03-23 Thread Marek Olšák
On Wed, Mar 21, 2018 at 8:04 PM, Roland Scheidegger wrote: > Am 22.03.2018 um 00:43 schrieb Ilia Mirkin: > > On Wed, Mar 21, 2018 at 7:37 PM, Roland Scheidegger > wrote: > >> Personally I'm not a big proponent on propagating single-vendor > >> extensions (which are useless for anything but one s

Re: [Mesa-dev] [PATCH 2/4] gallium: add initial support for conservative rasterization

2018-03-21 Thread Roland Scheidegger
Am 22.03.2018 um 00:43 schrieb Ilia Mirkin: > On Wed, Mar 21, 2018 at 7:37 PM, Roland Scheidegger > wrote: >> Personally I'm not a big proponent on propagating single-vendor >> extensions (which are useless for anything but one specific driver) more >> or less directly through to gallium. >> Ther

Re: [Mesa-dev] [PATCH 2/4] gallium: add initial support for conservative rasterization

2018-03-21 Thread Ilia Mirkin
On Wed, Mar 21, 2018 at 7:37 PM, Roland Scheidegger wrote: > Personally I'm not a big proponent on propagating single-vendor > extensions (which are useless for anything but one specific driver) more > or less directly through to gallium. > There's an intel extension doing similar things already t

Re: [Mesa-dev] [PATCH 2/4] gallium: add initial support for conservative rasterization

2018-03-21 Thread Roland Scheidegger
Personally I'm not a big proponent on propagating single-vendor extensions (which are useless for anything but one specific driver) more or less directly through to gallium. There's an intel extension doing similar things already too. Ideally we'd end up with some bits in gallium which can do whate

[Mesa-dev] [PATCH 2/4] gallium: add initial support for conservative rasterization

2018-03-21 Thread pendingchaos
--- src/gallium/docs/source/cso/rasterizer.rst | 18 ++ src/gallium/docs/source/screen.rst | 18 ++ src/gallium/drivers/etnaviv/etnaviv_screen.c | 10 ++ src/gallium/drivers/freedreno/freedreno_screen.c | 10 ++ src/gallium/dr