From: DRC Date: Thu, 22 Dec 2011 15:57:59 +0000 (+0000) Subject: Changing the deferred update timer to 10 ms caused a large performance regression... X-Git-Tag: v1.1.90~2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4548f3010fd74e0442eb84571fcb44573232730f;p=tigervnc.git 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 --- 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);