Why is RDP so fast compared to other remote control software?

后端 未结 2 1218
小蘑菇
小蘑菇 2021-01-31 17:20

I use RDP-based Windows\' Remote Client Desktop utility to connect to my desktop from my laptop. It\'s much faster and looks better than remote control applications like TeamVie

2条回答
  •  不要未来只要你来
    2021-01-31 18:19

    RDP is a specific protocol which allows to transmit low-level screen drawing operations. It is also aware of pixmap entities on the screen. For example it understands when an icon is drawn and caches it (typically in a lossy compressed format) on the client side.

    Other software does not have this low-level access: It waits for the screen to change and then re-transmit a capture of the screen or the changed regions. Whenever the screen changes, a pixmap representation has to be transmitted. Because this is lossy compressed in general, it also looks worse.

提交回复
热议问题