I'm having trouble with the -alr option to Xvnc. I start the server with:
$ /opt/TurboVNC/bin/vncserver -alr 5
Then connect with:
/opt/TurboVNC/bin/vncviewer -Subsampling=gray -Quality=10 host:6
When my desktop appears, it is using the specified Subsampling and
Quality. Then, without interacti
There was no blinking cursor. Setting TVNC_ALRALL=1 makes the refresh
work. So maybe it's not a bug.
On Fri, Oct 4, 2013 at 10:41 AM, Kevin Van Workum wrote:
> I'm having trouble with the -alr option to Xvnc. I start the server with:
>
> $ /opt/TurboVNC/bin/vncserver -alr 5
>
> Then connect with
The default is for ALR to affect only PutImage operations, which is what VGL
uses to draw images. Many 2D apps use other methods to draw images, like X
Render or CopyArea, that won't be subject to ALR unless you set TVNC_ALRALL.
The docs go into more detail. ALR is really targeted at 3D apps.
>
OK, that makes sense. But then why do I get that 1 initial refresh?
On Fri, Oct 4, 2013 at 5:08 PM, DRC wrote:
> The default is for ALR to affect only PutImage operations, which is what VGL
> uses to draw images. Many 2D apps use other methods to draw images, like X
> Render or CopyArea, that w
I'm not in front of the code right now, but I'll double check the logic when I
get a chance. I recall that I do things a little differently on the first
refresh, but I can't recall the specifics.
> On Oct 4, 2013, at 4:24 PM, Kevin Van Workum wrote:
>
> OK, that makes sense. But then why do I