Mark blocking invokes for painting as lower priority

* This allows them to be enqueued without the usual synchronous block
  if there's something long-running on the queue while in remote mode.
This commit is contained in:
baldurk
2016-08-19 17:26:24 +02:00
parent d63e3b89ad
commit ebea48260d
4 changed files with 80 additions and 28 deletions
+1 -1
View File
@@ -155,7 +155,7 @@ namespace renderdocui.Controls
}
if (m_Output != null)
m_Core.Renderer.Invoke((ReplayRenderer r) => { m_Output.Display(); });
m_Core.Renderer.InvokeForPaint((ReplayRenderer r) => { m_Output.Display(); });
}
public void SetSize(Size s)