|
|
|
|
|
by destructionator
1373 days ago
|
|
> The X11 protocol is very chatty so even very simple things will cause several roundtrips which makes X over the network so painful. This simply isn't true. Some operations require roundtrips, drag and drop comes to mind, but very simple things absolutely don't. Events come one way, draw commands go the other. |
|
Essentially xlib is latency limited because its a synchronous protocol. Xcb can help if you redesign your applications for it, but we are talking about old applications (motif...)