Re: [Mesa-dev] [PATCH v6 4/5] st/dri2: Implement DRI2bufferDamageExtension

2019-08-12 Thread Boris Brezillon
On Tue, 6 Aug 2019 15:49:14 +0800 Qiang Yu wrote: > > > > Erik, Qiang, Marek, > > > > Any comment on this v5. Should I send a v6 adding the missing FREE() > > call. Anything else you'd like me to change? > > > Hi Boris, > > There's no other change from my side. Use v5 way is just my

Re: [Mesa-dev] [PATCH v6 4/5] st/dri2: Implement DRI2bufferDamageExtension

2019-08-06 Thread Qiang Yu
On Thu, Aug 1, 2019 at 8:15 PM Boris Brezillon wrote: > > +Marek (looks like I forgot to Cc you on this v6 :-/). > > On Mon, 22 Jul 2019 09:49:31 +0200 > Boris Brezillon wrote: > > > Hi Qiang, > > > > On Sun, 21 Jul 2019 17:02:54 +0800 > > Qiang Yu wrote: > > > > > On Mon, Jul 15, 2019 at 8:50

Re: [Mesa-dev] [PATCH v6 4/5] st/dri2: Implement DRI2bufferDamageExtension

2019-08-01 Thread Boris Brezillon
+Marek (looks like I forgot to Cc you on this v6 :-/). On Mon, 22 Jul 2019 09:49:31 +0200 Boris Brezillon wrote: > Hi Qiang, > > On Sun, 21 Jul 2019 17:02:54 +0800 > Qiang Yu wrote: > > > On Mon, Jul 15, 2019 at 8:50 PM Boris Brezillon > > wrote: > > > > > > From: Daniel Stone > > > > >

Re: [Mesa-dev] [PATCH v6 4/5] st/dri2: Implement DRI2bufferDamageExtension

2019-07-22 Thread Boris Brezillon
Hi Qiang, On Sun, 21 Jul 2019 17:02:54 +0800 Qiang Yu wrote: > On Mon, Jul 15, 2019 at 8:50 PM Boris Brezillon > wrote: > > > > From: Daniel Stone > > > > Add a pipe_screen->set_damage_region() hook to propagate > > set-damage-region requests to the driver, it's then up to the driver to > >

Re: [Mesa-dev] [PATCH v6 4/5] st/dri2: Implement DRI2bufferDamageExtension

2019-07-21 Thread Qiang Yu
On Mon, Jul 15, 2019 at 8:50 PM Boris Brezillon wrote: > > From: Daniel Stone > > Add a pipe_screen->set_damage_region() hook to propagate > set-damage-region requests to the driver, it's then up to the driver to > decide what to do with this piece of information. > > If the hook is left

[Mesa-dev] [PATCH v6 4/5] st/dri2: Implement DRI2bufferDamageExtension

2019-07-15 Thread Boris Brezillon
From: Daniel Stone Add a pipe_screen->set_damage_region() hook to propagate set-damage-region requests to the driver, it's then up to the driver to decide what to do with this piece of information. If the hook is left unassigned, the buffer-damage extension is considered unsupported.