diff options
author | DRC <dcommander@users.sourceforge.net> | 2011-12-22 15:57:59 +0000 |
---|---|---|
committer | DRC <dcommander@users.sourceforge.net> | 2011-12-22 15:57:59 +0000 |
commit | 4548f3010fd74e0442eb84571fcb44573232730f (patch) | |
tree | 45b1dcc23bd8e0d5a491807d797ab3e0938cf814 /common/rfb/VNCServerST.cxx | |
parent | 6b0bc295ba39705785e96fa6d43d95ad94074ee4 (diff) | |
download | tigervnc-4548f3010fd74e0442eb84571fcb44573232730f.tar.gz tigervnc-4548f3010fd74e0442eb84571fcb44573232730f.zip |
Changing the deferred update timer to 10 ms caused a large performance regression on video/3D apps, and until we can quantify the benefits of a larger DUT value, it was decided that it should be changed back to 1 ms for the 1.2 release.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4825 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'common/rfb/VNCServerST.cxx')
-rw-r--r-- | common/rfb/VNCServerST.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/rfb/VNCServerST.cxx b/common/rfb/VNCServerST.cxx index 1e3f61a0..697695d4 100644 --- a/common/rfb/VNCServerST.cxx +++ b/common/rfb/VNCServerST.cxx @@ -65,7 +65,7 @@ static LogWriter slog("VNCServerST"); LogWriter VNCServerST::connectionsLog("Connections"); rfb::IntParameter deferUpdateTime("DeferUpdate", - "Time in milliseconds to defer updates",10); + "Time in milliseconds to defer updates",1); rfb::BoolParameter alwaysSetDeferUpdateTimer("AlwaysSetDeferUpdateTimer", "Always reset the defer update timer on every change",false); |