Commit 7d51cb67 authored by Oleksandr Shneyder's avatar Oleksandr Shneyder Committed by Mike Gabriel

nxcomp: Set TokenSize to 1536 for link type ADSL and WAN. Improving non-xrender…

nxcomp: Set TokenSize to 1536 for link type ADSL and WAN. Improving non-xrender based browser scrolling behaviour when link type is set to ADSL or WAN. In the 40-ies (talking about release version numbers), Firefox started using the Skia library [1] for client-side rendering of browser content. With current versions of Firefox you can switch between libXrender based rendering (esp. of Fonts) and Skia based rendering: gfx.xrender.enabled = true|false Some time around Firefox 52, the default for the gfx.xrender.enabled setting got changed by Firefox upstream from true to false. So nowadays, Firefox uses Skia by default. However, it turns out that Skia scales really badly on remote X11 connections. Scrolling of long web pages becomes really jolty. Something similar could be observed earlier already when using Chrome or Chromium (which also has been using Skia for some time now). This change in nxcomp works around those issues and greatly improves scrolling and general browser experience on medium throughput networks (like cable modem, ADSL, HDSPA, slow LTE). [1] https://en.wikipedia.org/wiki/Skia_Graphics_Engine Fixes ArcticaProject/nx-libs#443.
parent 4365fe38
...@@ -12942,7 +12942,7 @@ int SetLinkAdsl() ...@@ -12942,7 +12942,7 @@ int SetLinkAdsl()
control -> LinkMode = LINK_TYPE_ADSL; control -> LinkMode = LINK_TYPE_ADSL;
control -> TokenSize = 512; control -> TokenSize = 1536;
control -> TokenLimit = 24; control -> TokenLimit = 24;
control -> SplitMode = 1; control -> SplitMode = 1;
...@@ -12972,7 +12972,7 @@ int SetLinkWan() ...@@ -12972,7 +12972,7 @@ int SetLinkWan()
control -> LinkMode = LINK_TYPE_WAN; control -> LinkMode = LINK_TYPE_WAN;
control -> TokenSize = 768; control -> TokenSize = 1536;
control -> TokenLimit = 24; control -> TokenLimit = 24;
control -> SplitMode = 1; control -> SplitMode = 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment