Re: [Qemu-devel] [PULL 13/14] spice: add cursor_dmabuf support

2018-07-19 Thread Peter Maydell
On 6 July 2018 at 12:54, Peter Maydell wrote: > On 27 April 2018 at 14:16, Peter Maydell wrote: >> On 12 March 2018 at 09:14, Gerd Hoffmann wrote: >>> Add support for cursor dmabufs. qemu has to render the cursor for >>> that, so in case a cursor is present qemu allocates a new dmabuf, blits >>

Re: [Qemu-devel] [PULL 13/14] spice: add cursor_dmabuf support

2018-07-06 Thread Peter Maydell
On 27 April 2018 at 14:16, Peter Maydell wrote: > On 12 March 2018 at 09:14, Gerd Hoffmann wrote: >> Add support for cursor dmabufs. qemu has to render the cursor for >> that, so in case a cursor is present qemu allocates a new dmabuf, blits >> the scanout, blends in the pointer and passes on th

Re: [Qemu-devel] [PULL 13/14] spice: add cursor_dmabuf support

2018-04-27 Thread Peter Maydell
On 12 March 2018 at 09:14, Gerd Hoffmann wrote: > Add support for cursor dmabufs. qemu has to render the cursor for > that, so in case a cursor is present qemu allocates a new dmabuf, blits > the scanout, blends in the pointer and passes on the new dmabuf to > spice-server. Without cursor qemu c

Re: [Qemu-devel] [PULL 13/14] spice: add cursor_dmabuf support

2018-04-27 Thread Peter Maydell
On 12 March 2018 at 09:14, Gerd Hoffmann wrote: > Add support for cursor dmabufs. qemu has to render the cursor for > that, so in case a cursor is present qemu allocates a new dmabuf, blits > the scanout, blends in the pointer and passes on the new dmabuf to > spice-server. Without cursor qemu c

[Qemu-devel] [PULL 13/14] spice: add cursor_dmabuf support

2018-03-12 Thread Gerd Hoffmann
Add support for cursor dmabufs. qemu has to render the cursor for that, so in case a cursor is present qemu allocates a new dmabuf, blits the scanout, blends in the pointer and passes on the new dmabuf to spice-server. Without cursor qemu continues to simply pass on the scanout dmabuf as-is. Sig