<div dir="ltr">Hi All,<div><br></div><div>@Guillermo: yep, that's exactly the same problem I'm thinking about.</div><div><br></div><div>I had an idea that I'm wondering about....  the rendering model in my toolkit is essentially the same as Windows/OSX - where the application invalidates part of the window, and then at some later point the OS calls back with a message prompting the app to paint that part of the screen.  ie: multiple invalidate calls are coalesced into a single paint call at a later time - typically just before entering the message loop's idle state.</div><div><br></div><div>Could a Wayland app mimic this behaviour by having a single background buffer that contains the current window content?  When the application invalidates the window it does one of two things depending on whether the buffer has been returned from the compositor yet.</div><div><br></div><div>* If the buffer has been returned and no longer in use by the compositor, it queues a paint message to itself.</div><div><br></div><div>* If the buffer hasn't been returned and is still in use by the compositor, set a flag on the window.  When the buffer is returned from the compositor, it checks that flag and if set then it clears the flag and queues the paint message.</div><div><br></div><div>The paint message redraws all the invalidated (damaged) rectangles and re-submits it to the compositor and the whole cycle starts again.</div><div><br></div><div>Obviously there's more logic around maintaining the dirty region, coalescing multiple invalidate/damage calls, an assumption that there's a mechanism to post a message via the message loop etc... but I hope this explains the idea.  </div><div><br></div><div>Would this work?  I think the main requirement would be that:</div><div><br></div><div>1. the compositor doesn't change the contents of the buffer and that when it's returned it's still got the old content.  </div><div>2. that the compositor returns buffers it's finished with in a timely manner</div><div><br></div><div>It's not clear to me from what I've read that either of these points are true or safe assumptions.</div><div><br></div><div>This would eliminate the need to manage multiple buffers, multiple dirty regions, the need to copy previously rendered content between buffers and fits nicely with the rendering model of Windows/OSX giving similar semantics on all platforms.</div><div><br></div><div>Brad</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Jun 24, 2020 at 6:11 PM Guillermo Rodriguez Garcia <<a href="mailto:guille.rodriguez@gmail.com">guille.rodriguez@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi Brad,<br>
<br>
El vie., 19 jun. 2020 a las 5:24, Brad Robinson<br>
(<<a href="mailto:brobinson@toptensoftware.com" target="_blank">brobinson@toptensoftware.com</a>>) escribió:<br>
[...]<br>
><br>
> Finally, the toolkit already maintains an off-screen buffer with the window's current contents rendered into it.  I'll probably replace that with a Wayland buffer, but wondering about partial updates.  eg: if the client only needs to redraw a part of the window what's the correct process to update just that part with Wayland.  Can I just update the existing buffer and prompt Wayland to just redraw that part?<br>
<br>
I am facing a similar situation with a toolkit that maintains an<br>
off-screen buffer with the current window contents, and will update<br>
that buffer at arbitrary times, when the application needs to update<br>
the UI.<br>
<br>
You must consider the following:<br>
<br>
Once you submit a buffer to Wayland you cannot touch it anymore until<br>
the compositor releases it back (wl_buffer.release callback). From<br>
Pekka's email:<br>
<br>
> When you submit a buffer to a Wayland compositor, it gives the<br>
> compositor permission to read the buffer at any time, as many times as<br>
> it wants to, until it tells you with wl_buffer.release that it will not<br>
> be looking at that buffer again. You must not write to a buffer that<br>
> might be read by the compositor, as that can cause misrendering on<br>
> screen (e.g. your repaint is shown unfinished).<br>
<br>
This means you cannot simply use the same off-screen buffer that the<br>
toolkit maintains, since the toolkit should not update the buffer once<br>
it submits it to Wayland.<br>
<br>
At some point I thought that I could have separate Wayland buffers and<br>
copy damaged regions from the toolkit buffer to one of these Wayland<br>
buffers before submitting it to the compositor.<br>
The idea would be to copy the set of regions that were damaged since<br>
the last update.<br>
<br>
But just copying damaged regions is not enough either. From Pekka's email:<br>
<br>
> Also, every buffer you submit must be fully drawn, also outside of the<br>
> areas you mark as damage. The compositor may be reading more than just<br>
> the damage you submit.<br>
<br>
So this means that everytime the toolkit updates the off-screen<br>
buffer, I may need to copy _the entire thing_ to a Wayland buffer and<br>
submit it to the compositor... not very efficient I guess.<br>
<br>
I have the feeling that Wayland is designed for a model where the<br>
client renders the entire frame on demand (most of the examples I've<br>
found so far work like this) and not for a model where the client is<br>
updating a buffer asynchronously and you just want to tell the<br>
compositor to update parts of the frame.<br>
<br>
I would be very interested to learn about your solution to this problem.<br>
<br>
Best,<br>
<br>
Guillermo Rodriguez Garcia<br>
<a href="mailto:guille.rodriguez@gmail.com" target="_blank">guille.rodriguez@gmail.com</a><br>
</blockquote></div>