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

2019-07-03 Thread Erik Faye-Lund
On Wed, 2019-07-03 at 12:33 +0200, Boris Brezillon wrote: > On Wed, 03 Jul 2019 11:54:29 +0200 > Erik Faye-Lund wrote: > > > On Wed, 2019-06-26 at 10:34 -0700, Alyssa Rosenzweig wrote: > > > Ah-ha, now we're into parts of the stack I can claim to > > > understand! > > > > :) > > > > > > Revi

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

2019-07-03 Thread Boris Brezillon
On Wed, 03 Jul 2019 11:54:29 +0200 Erik Faye-Lund wrote: > On Wed, 2019-06-26 at 10:34 -0700, Alyssa Rosenzweig wrote: > > Ah-ha, now we're into parts of the stack I can claim to understand! > > >:) > > > > Reviewed-by: Alyssa Rosenzweig > > > > On Tue, Jun 25, 2019 at 06:37:48PM +0200, Bo

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

2019-07-03 Thread Erik Faye-Lund
On Wed, 2019-06-26 at 10:34 -0700, Alyssa Rosenzweig wrote: > Ah-ha, now we're into parts of the stack I can claim to understand! > >:) > > Reviewed-by: Alyssa Rosenzweig > > On Tue, Jun 25, 2019 at 06:37:48PM +0200, Boris Brezillon wrote: > > From: Daniel Stone > > > > Add a pipe_screen->set_

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

2019-06-26 Thread Alyssa Rosenzweig
Ah-ha, now we're into parts of the stack I can claim to understand! >:) Reviewed-by: Alyssa Rosenzweig On Tue, Jun 25, 2019 at 06:37:48PM +0200, Boris Brezillon wrote: > From: Daniel Stone > > Add a pipe_screen->set_damage_region() hook to propagate > set-damage-region requests to the driver,

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

2019-06-25 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. Signed-off