LibVNC / libvncserver

LibVNCServer/LibVNCClient are cross-platform C libraries that allow you to easily implement VNC server or client functionality in your program.
GNU General Public License v2.0
1.08k stars 483 forks source link

Can screen->framebuffer can be in use after sending displayFinishedHook ? #569

Closed sdikshit786 closed 1 year ago

sdikshit786 commented 1 year ago

I am facing an issue with VNC server a yes/no answer to the following question will help.

If displayFinishedHook call implies libvncserver is finished using the buffer supplied as screen->framebuffer?

Thanks!

bk138 commented 1 year ago

No.

sdikshit786 commented 1 year ago

Thanks! Kindly, guide the usage of the displayFinishedHook what is the purpose and what the call to this indicates?

bk138 commented 1 year ago

You can see in 09f7c684a2b7eb43f283dcd938f0ccad891724e8 what it does. https://github.com/rfbproto/rfbproto/blob/master/rfbproto.rst#751framebufferupdate has some more background info.

sdikshit786 commented 1 year ago

Thank you!