|
|
|
|
|
by chmod775
1321 days ago
|
|
Because when you want instant switching you need to already have the data you want to display available the moment someone flips the switch. You can't just tell the computer that you're now interested in the display data of the other display - that would incur latency. You'll have to be receiving the information for the second display the entire time, storing it in what is commonly called a framebuffer, aka a bitmap in memory somewhere. Most types of display have such a thing backing them anyways - one way or another - since they need to remember what they're supposed to display. |
|