3

I have two mirror drivers showing up in Device Manager (in Windows), from RealVNC and UltraVNC. What exactly does a mirror/hook display driver (adapter?) do?

I'm curious about the actual mechanism(s) of functionality, and why a regular display driver/adapter doesn't suffice.

Coldblackice
  • 6,233
  • 20
  • 60
  • 89

1 Answers1

4

Based on this description, it's simply a virtual driver that mirrors the operation of a physical device. It's basically installed as a driver for a virtual graphics card. This means it gets immediate notification of all display updates, allowing the VNC server to react quicker and use less CPU. A regular display adapter doesn't suffice because you aren't interacting with hardware (a monitor) the same was as if it were plugged in normally.

Bryan
  • 808